Changeset 1426

Show
Ignore:
Timestamp:
10/02/08 11:15:32 (2 months ago)
Author:
timdewhirst
Message:

olibs

  • fix poor spelling
  • if we specify no python, don't check for the python libraries
Location:
trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r1423 r1426  
    6262endif ( GLEW_FOUND ) 
    6363 
    64 # Python 
    65 find_package( PythonLibs ) 
    66  
    6764# kill some warnings, add some windows specific defines 
    6865if ( WIN32 ) 
     
    9895# Define options 
    9996 
    100 option ( WITH_PYTHON_EXTENTIONS "Compile the python extentions for OpenLibraries." TRUE ) 
     97option ( WITH_PYTHON_EXTENSIONS "Compile the python extentions for OpenLibraries." TRUE ) 
    10198option ( WITH_OPENFX_PLUGIN "Compile the OpenFX plugin for openmedialib." FALSE )  
    10299option ( WITH_OPENML "Compile the openmedialib." TRUE )  
     
    105102option ( WITH_OPENFXL "Compile the openeffectslib." FALSE )  
    106103option ( WITH_OPENOL "Compile the openobjectlib." TRUE )  
     104 
     105if ( WITH_PYTHON_EXTENSIONS ) 
     106   # Python 
     107   find_package( PythonLibs ) 
     108endif ( WITH_PYTHON_EXTENSIONS ) 
    107109 
    108110# Install .so files with execcuteable permissions 
  • trunk/INSTALL

    r1403 r1426  
    3434 * -D CMAKE_INSTALL_PREFIX:STRING=c:\openlibraries  
    3535 * -D CMAKE_BUILD_TYPE:STRING=Release  
    36  * -D WITH_PYTHON_EXTENTIONS:BOOL=FALSE 
     36 * -D WITH_PYTHON_EXTENSIONS:BOOL=FALSE 
    3737 
    3838To get a list of all possible generators, run cmake --help 
  • trunk/src/openassetlib/CMakeLists.txt

    r1390 r1426  
    11add_subdirectory( al ) 
    22add_subdirectory( plugins ) 
    3 if ( WITH_PYTHON_EXTENTIONS ) 
     3if ( WITH_PYTHON_EXTENSIONS ) 
    44    add_subdirectory( py ) 
    5 endif ( WITH_PYTHON_EXTENTIONS ) 
     5endif ( WITH_PYTHON_EXTENSIONS ) 
  • trunk/src/openimagelib/CMakeLists.txt

    r1380 r1426  
    11add_subdirectory( il ) 
    22add_subdirectory( plugins ) 
    3 IF ( WITH_PYTHON_EXTENTIONS ) 
     3IF ( WITH_PYTHON_EXTENSIONS ) 
    44    add_subdirectory( py ) 
    5 ENDIF ( WITH_PYTHON_EXTENTIONS ) 
     5ENDIF ( WITH_PYTHON_EXTENSIONS ) 
  • trunk/src/openmedialib/CMakeLists.txt

    r1380 r1426  
    11add_subdirectory( ml ) 
    22add_subdirectory( plugins ) 
    3 IF ( WITH_PYTHON_EXTENTIONS ) 
     3IF ( WITH_PYTHON_EXTENSIONS ) 
    44    add_subdirectory( py ) 
    5 ENDIF ( WITH_PYTHON_EXTENTIONS ) 
     5ENDIF ( WITH_PYTHON_EXTENSIONS ) 
  • trunk/src/openpluginlib/CMakeLists.txt

    r1377 r1426  
    11add_subdirectory( pl ) 
    2 IF ( WITH_PYTHON_EXTENTIONS ) 
     2IF ( WITH_PYTHON_EXTENSIONS ) 
    33    add_subdirectory( py ) 
    4 ENDIF ( WITH_PYTHON_EXTENTIONS ) 
     4ENDIF ( WITH_PYTHON_EXTENSIONS )