Show
Ignore:
Timestamp:
06/18/08 06:07:57 (5 months ago)
Author:
rexbron
Message:
  • Added soname versioning to openpluginlib and python extention as well as openimagelib.
  • FindGLEW.cmake now uses path_suffixes to find glew headers.
  • Link openpluginlib's python extention (They were not linked before hand).
    • Still need to figure out a solution to non-portable .so problem...
      This could break OL on non-linux platforms...
Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-id:v3-trunk0
      •  

        old new  
        551377 andrew@aehunter.net-20080616122853-cwqokea7hkf82eo1 
        661378 andrew@aehunter.net-20080616222400-9q0vwtkk6091txce 
         71380 andrew@aehunter.net-20080618110315-ngg1d48fy0h3b6bs 
    • Property bzr:file-ids
      •  

        old new  
        1 FindOpenEXR.cmake       findopenexr.cmake-20080616221215-17ge0xzpvuxlhnjz-1 
        2 src/openimagelib/plugins/jpg/CMakeLists.txt     cmakelists.txt-20080616215536-2e4278apyb0elsd6-1 
    • Property bzr:ancestry:v3-trunk0
      •  

        old new  
        55andrew@aehunter.net-20080616122604-vyn3c4elr33ehlai 
        66andrew@aehunter.net-20080616222235-pb4vb2oeu6cj88m4 
         7andrew@aehunter.net-20080618110236-pfuxsos8x3wd285v 
    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-06-16 23:24:00.365999937 +0100 
         1timestamp: 2008-06-18 12:03:15.190000057 +0100 
        22committer: Andrew Hunter <andrew@aehunter.net> 
        33properties:  
  • trunk/src/openpluginlib/py/CMakeLists.txt

    r1380 r1383  
    2626MESSAGE ( "Found Python: ${PYTHON_INCLUDE_PATH} ${PYTHON_LIBRARIES} " ) 
    2727INCLUDE_DIRECTORIES ( ${PYTHON_INCLUDE_PATH} ) 
    28 TARGET_LINK_LIBRARIES ( ${NAME} ${PYTHON_LIBRARIES} ) 
     28TARGET_LINK_LIBRARIES ( ${NAME} ${PYTHON_LIBRARIES}  
     29                                ${Boost_LIBRARY_DIRS}/libboost_filesystem.so  
     30                                ${Boost_LIBRARY_DIRS}/libboost_python.so  
     31                                ${Boost_LIBRARY_DIRS}/libboost_regex.so  
     32                                ${Boost_LIBRARY_DIRS}/libboost_thread.so  
     33                                ${XML2_LIBRARIES} 
     34                                ${OpenLibraries_BINARY_DIR}/src/openpluginlib/pl/libopenpluginlib_pl.so ) 
     35 
     36IF ( GLEW_FOUND ) 
     37    TARGET_LINK_LIBRARIES ( ${NAME} ${GLEW_LIBRARY} ) 
     38ENDIF ( GLEW_FOUND ) 
     39 
     40SET_TARGET_PROPERTIES ( ${NAME} PROPERTIES VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} SOVERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} ) 
    2941 
    3042INSTALL ( TARGETS ${NAME} LIBRARY DESTINATION "lib/${PACKAGE}/openpluginlib/py/" )