- Timestamp:
- 06/16/08 07:30:42 (5 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 modified
-
. (modified) (4 props)
-
src/openimagelib/CMakeLists.txt (modified) (1 diff)
-
src/openimagelib/py/CMakeLists.txt (added)
-
src/openmedialib/CMakeLists.txt (modified) (1 diff)
-
src/openmedialib/py/CMakeLists.txt (added)
-
src/openpluginlib/py/CMakeLists.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property bzr:revision-id:v3-trunk0
-
old new 3 3 1375 andrew@aehunter.net-20080616113418-7qu4qxldvpxfrdp7 4 4 1376 andrew@aehunter.net-20080616113559-u5wad4bpwd9uzmd8 5 1377 andrew@aehunter.net-20080616122853-cwqokea7hkf82eo1
-
- Property bzr:file-ids
-
old new 1 src/openimagelib/py/CMakeLists.txt cmakelists.txt-20080616122340-yvob89adq4bt30c2-1 2 src/openmedialib/py/CMakeLists.txt cmakelists.txt-20080616121513-vphdp07v4w50h712-1
-
- Property bzr:ancestry:v3-trunk0
-
old new 3 3 andrew@aehunter.net-20080614141409-u4z2pzco7bmhavlb 4 4 andrew@aehunter.net-20080616112610-ky0ylmbwjn9w1mzm 5 andrew@aehunter.net-20080616122604-vyn3c4elr33ehlai
-
- Property bzr:revision-info
-
old new 1 timestamp: 2008-06-16 1 2:35:59.805000067 +01001 timestamp: 2008-06-16 13:28:53.707000017 +0100 2 2 committer: Andrew Hunter <andrew@aehunter.net> 3 3 properties:
-
- Property bzr:revision-id:v3-trunk0
-
trunk/src/openimagelib/CMakeLists.txt
r1366 r1380 1 1 add_subdirectory( il ) 2 2 add_subdirectory( plugins ) 3 #add_subdirectory( py ) 3 IF ( WITH_PYTHON_EXTENTIONS ) 4 add_subdirectory( py ) 5 ENDIF ( WITH_PYTHON_EXTENTIONS ) -
trunk/src/openmedialib/CMakeLists.txt
r1366 r1380 1 1 add_subdirectory( ml ) 2 2 add_subdirectory( plugins ) 3 #add_subdirectory( py ) 3 IF ( WITH_PYTHON_EXTENTIONS ) 4 add_subdirectory( py ) 5 ENDIF ( WITH_PYTHON_EXTENTIONS ) -
trunk/src/openpluginlib/py/CMakeLists.txt
r1377 r1380 1 FIND_PACKAGE ( PythonLibs )1 FIND_PACKAGE ( PythonLibs REQUIRED ) 2 2 3 3 INCLUDE_DIRECTORIES ( ${OpenLibraries_SOURCE_DIR}/src ) … … 20 20 pcos/visitor.cpp ) 21 21 22 #ADD_DEFINITIONS ( -DOPENEFFECTSLIB_SHADERS=\"${OPENEFFECTSLIB_SHADERSPATH}/\" ) #FIXME: What does this do? 23 22 24 ADD_LIBRARY ( ${NAME} SHARED ${SOURCES} ) 23 25 24 IF ( PYTHON_FOUND ) 25 MESSAGE ( "Found Python: ${PYTHON_INCLUDE_PATH} ${PYTHON_LIBRARIES} " ) 26 INCLUDE_DIRECTORIES ( ${PYTHON_INCLUDE_PATH} ) 27 TARGET_LINK_LIBRARIES ( ${NAME} ${PYTHON_LIBRARIES} ) 28 ENDIF ( PYTHON_FOUND ) 26 MESSAGE ( "Found Python: ${PYTHON_INCLUDE_PATH} ${PYTHON_LIBRARIES} " ) 27 INCLUDE_DIRECTORIES ( ${PYTHON_INCLUDE_PATH} ) 28 TARGET_LINK_LIBRARIES ( ${NAME} ${PYTHON_LIBRARIES} ) 29 29 30 INSTALL ( TARGETS ${NAME} LIBRARY DESTINATION "lib/${PACKAGE}/openpluginlib/py/" )
