Changeset 1426
- Timestamp:
- 10/02/08 11:15:32 (2 months ago)
- Location:
- trunk
- Files:
-
- 6 modified
-
CMakeLists.txt (modified) (3 diffs)
-
INSTALL (modified) (1 diff)
-
src/openassetlib/CMakeLists.txt (modified) (1 diff)
-
src/openimagelib/CMakeLists.txt (modified) (1 diff)
-
src/openmedialib/CMakeLists.txt (modified) (1 diff)
-
src/openpluginlib/CMakeLists.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CMakeLists.txt
r1423 r1426 62 62 endif ( GLEW_FOUND ) 63 63 64 # Python65 find_package( PythonLibs )66 67 64 # kill some warnings, add some windows specific defines 68 65 if ( WIN32 ) … … 98 95 # Define options 99 96 100 option ( WITH_PYTHON_EXTEN TIONS "Compile the python extentions for OpenLibraries." TRUE )97 option ( WITH_PYTHON_EXTENSIONS "Compile the python extentions for OpenLibraries." TRUE ) 101 98 option ( WITH_OPENFX_PLUGIN "Compile the OpenFX plugin for openmedialib." FALSE ) 102 99 option ( WITH_OPENML "Compile the openmedialib." TRUE ) … … 105 102 option ( WITH_OPENFXL "Compile the openeffectslib." FALSE ) 106 103 option ( WITH_OPENOL "Compile the openobjectlib." TRUE ) 104 105 if ( WITH_PYTHON_EXTENSIONS ) 106 # Python 107 find_package( PythonLibs ) 108 endif ( WITH_PYTHON_EXTENSIONS ) 107 109 108 110 # Install .so files with execcuteable permissions -
trunk/INSTALL
r1403 r1426 34 34 * -D CMAKE_INSTALL_PREFIX:STRING=c:\openlibraries 35 35 * -D CMAKE_BUILD_TYPE:STRING=Release 36 * -D WITH_PYTHON_EXTEN TIONS:BOOL=FALSE36 * -D WITH_PYTHON_EXTENSIONS:BOOL=FALSE 37 37 38 38 To get a list of all possible generators, run cmake --help -
trunk/src/openassetlib/CMakeLists.txt
r1390 r1426 1 1 add_subdirectory( al ) 2 2 add_subdirectory( plugins ) 3 if ( WITH_PYTHON_EXTEN TIONS )3 if ( WITH_PYTHON_EXTENSIONS ) 4 4 add_subdirectory( py ) 5 endif ( WITH_PYTHON_EXTEN TIONS )5 endif ( WITH_PYTHON_EXTENSIONS ) -
trunk/src/openimagelib/CMakeLists.txt
r1380 r1426 1 1 add_subdirectory( il ) 2 2 add_subdirectory( plugins ) 3 IF ( WITH_PYTHON_EXTEN TIONS )3 IF ( WITH_PYTHON_EXTENSIONS ) 4 4 add_subdirectory( py ) 5 ENDIF ( WITH_PYTHON_EXTEN TIONS )5 ENDIF ( WITH_PYTHON_EXTENSIONS ) -
trunk/src/openmedialib/CMakeLists.txt
r1380 r1426 1 1 add_subdirectory( ml ) 2 2 add_subdirectory( plugins ) 3 IF ( WITH_PYTHON_EXTEN TIONS )3 IF ( WITH_PYTHON_EXTENSIONS ) 4 4 add_subdirectory( py ) 5 ENDIF ( WITH_PYTHON_EXTEN TIONS )5 ENDIF ( WITH_PYTHON_EXTENSIONS ) -
trunk/src/openpluginlib/CMakeLists.txt
r1377 r1426 1 1 add_subdirectory( pl ) 2 IF ( WITH_PYTHON_EXTEN TIONS )2 IF ( WITH_PYTHON_EXTENSIONS ) 3 3 add_subdirectory( py ) 4 ENDIF ( WITH_PYTHON_EXTEN TIONS )4 ENDIF ( WITH_PYTHON_EXTENSIONS )
