diff options
Diffstat (limited to 'qtmcop/CMakeLists.txt')
-rw-r--r-- | qtmcop/CMakeLists.txt | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/qtmcop/CMakeLists.txt b/qtmcop/CMakeLists.txt new file mode 100644 index 0000000..c972153 --- /dev/null +++ b/qtmcop/CMakeLists.txt @@ -0,0 +1,50 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} # for qiomanager_p.moc + ${CMAKE_BINARY_DIR}/mcop # for arts_export.h + ${CMAKE_SOURCE_DIR}/mcop # for iomanager.h, etc. +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +add_custom_command( + OUTPUT qiomanager_p.moc + COMMAND moc-tqt ARGS ${QT_MOC_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qiomanager_p.h qiomanager_p.moc + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/qiomanager_p.h +) + +set( qtmcop_INCS + qiomanager.h +) + +set( qtmcop_SRCS + qiomanager.cc + qiomanager_p.moc +) + +add_library( qtmcop SHARED ${qtmcop_SRCS} ) +set_target_properties( qtmcop PROPERTIES VERSION 1.0 SOVERSION 1 ) +target_link_libraries( qtmcop ${TQT_LIBRARIES} mcop ) + + +##### install ################################### + +install( FILES ${qtmcop_INCS} DESTINATION ${INCLUDE_INSTALL_DIR} ) +install(TARGETS qtmcop LIBRARY DESTINATION ${LIB_INSTALL_DIR} )
\ No newline at end of file |