74 lines
3.4 KiB
CMake
74 lines
3.4 KiB
CMake
# -*- explicit-buffer-name: "CMakeLists.txt<Seabreeze/src>" -*-
|
|
|
|
# include( ${QT_USE_FILE} )
|
|
include_directories( ${SEABREEZE_SOURCE_DIR}/src
|
|
${CORIOLIS_INCLUDE_DIR}
|
|
${HURRICANE_INCLUDE_DIR}
|
|
${CONFIGURATION_INCLUDE_DIR}
|
|
${QtX_INCLUDE_DIRS}
|
|
${Boost_INCLUDE_DIRS}
|
|
${Python_INCLUDE_DIRS}
|
|
)
|
|
set( includes seabreeze/SeabreezeEngine.h
|
|
#seabreeze/GraphicSeabreezeEngine.h
|
|
)
|
|
set( pyIncludes seabreeze/Configuration.h
|
|
seabreeze/Delay.h
|
|
seabreeze/Node.h
|
|
seabreeze/Tree.h
|
|
seabreeze/Elmore.h
|
|
seabreeze/PySeabreezeEngine.h
|
|
#seabreeze/PyGraphicSeabreezeEngine.h
|
|
)
|
|
#set( mocIncludes seabreeze/GraphicSeabreezeEngine.h )
|
|
set( cpps Configuration.cpp
|
|
Delay.cpp
|
|
Node.cpp
|
|
Tree.cpp
|
|
Elmore.cpp
|
|
SeabreezeEngine.cpp
|
|
#GraphicSeabreezeEngine.cpp
|
|
)
|
|
set( pyCpps PySeabreeze.cpp
|
|
PySeabreezeEngine.cpp
|
|
#PyGraphicSeabreezeEngine.cpp
|
|
)
|
|
#qtX_wrap_cpp( mocCpps ${mocIncludes} )
|
|
|
|
set( depLibs ${CORIOLIS_PYTHON_LIBRARIES}
|
|
${CORIOLIS_LIBRARIES}
|
|
${HURRICANE_PYTHON_LIBRARIES}
|
|
${HURRICANE_GRAPHICAL_LIBRARIES}
|
|
${HURRICANE_LIBRARIES}
|
|
${CONFIGURATION_LIBRARY}
|
|
${BOOKSHELF_LIBRARY}
|
|
${CIF_LIBRARY}
|
|
${AGDS_LIBRARY}
|
|
${UTILITIES_LIBRARY}
|
|
${LEFDEF_LIBRARIES}
|
|
${OA_LIBRARIES}
|
|
${QtX_LIBRARIES}
|
|
${Boost_LIBRARIES}
|
|
${LIBXML2_LIBRARIES}
|
|
-lutil
|
|
${LIBEXECINFO_LIBRARIES}
|
|
)
|
|
|
|
add_library( Seabreeze ${cpps} ${mocCpps} ${pyCpps} )
|
|
set_target_properties( Seabreeze PROPERTIES VERSION 1.0 SOVERSION 1 )
|
|
target_link_libraries( Seabreeze ${depLibs} )
|
|
|
|
add_python_module( "${pyCpps}"
|
|
"${pyIncludes}"
|
|
"Do_not_generate_C_library"
|
|
Seabreeze
|
|
"Seabreeze;${depLibs}"
|
|
include/coriolis2/seabreeze
|
|
)
|
|
|
|
install( TARGETS Seabreeze DESTINATION lib${LIB_SUFFIX} )
|
|
install( FILES ${includes}
|
|
${mocIncludes} DESTINATION include/coriolis2/seabreeze )
|
|
|
|
|