Show
Ignore:
Timestamp:
06/14/08 08:03:18 (5 months ago)
Author:
rexbron
Message:
Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-id:v3-trunk0 set to
      1373 andrew@aehunter.net-20080614130206-thshu8ln95djpgng
    • Property bzr:file-ids set to
      .bzrignore bzrignore-20080613161045-2n6yxm79gaz9g3on-1
    • Property bzr:ancestry:v3-trunk0 set to
      andrew@aehunter.net-20080613162705-8emncakb7nkknsbj
    • Property bzr:revision-info set to
      timestamp: 2008-06-14 14:02:06.701999903 +0100
      committer: Andrew Hunter <andrew@aehunter.net>
      properties:
      branch-nick: trunk
  • trunk/src/openmedialib/plugins/glew/CMakeLists.txt

    r1367 r1376  
    1111endif( WIN32 ) 
    1212 
     13IF( UNIX ) 
     14    IF( APPLE ) 
     15        #Does OS X need a HAVE_GL_GLUT_H definition? 
     16    ELSE( APPLE ) 
     17        ADD_DEFINITIONS( -DHAVE_GL_GLUT_H ) 
     18    ENDIF( APPLE ) 
     19ENDIF( UNIX ) 
     20 
    1321set( SOURCES 
    1422     glew_plugin.cpp ) 
     
    2028 
    2129add_library( ${NAME} SHARED ${SOURCES} ) 
    22 install( TARGETS ${NAME} RUNTIME DESTINATION "lib/${PACKAGE}/openmedialib/plugins" ) 
     30install( TARGETS ${NAME}  
     31         RUNTIME DESTINATION "lib/${PACKAGE}/openmedialib/plugins" 
     32         LIBRARY DESTINATION "lib/${PACKAGE}/openmedialib/plugins" ) 
    2333 
    2434if( WIN32 )