diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
commit | b363d2579af0a11b77e698aed2e1021c2233b644 (patch) | |
tree | f4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /tderesources/featureplan/CMakeLists.txt | |
parent | 61bddfe3a7226b18c68a76124b727c736f431688 (diff) | |
download | tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tderesources/featureplan/CMakeLists.txt')
-rw-r--r-- | tderesources/featureplan/CMakeLists.txt | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/tderesources/featureplan/CMakeLists.txt b/tderesources/featureplan/CMakeLists.txt new file mode 100644 index 000000000..76e279c80 --- /dev/null +++ b/tderesources/featureplan/CMakeLists.txt @@ -0,0 +1,74 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +if( BUILD_KODE ) + set( KXML_COMPILER_EXECUTABLE ${CMAKE_BINARY_DIR}/kode/kxml_compiler/kxml_compiler ) + set( KXML_COMPILER_TARGET kxml_compiler ) +else( ) + find_program( KXML_COMPILER_EXECUTABLE + NAMES kxml_compiler + HINTS ${TDE_BIN_DIR} ${BIN_INSTALL_DIR} ) + if( NOT KXML_COMPILER_EXECUTABLE ) + tde_message_fatal( "kxml_compiler is NOT found.\n kode package is correctly installed?" ) + endif( ) +endif( ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libtdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES + kcal_resourcefeatureplan.desktop + DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kcal ) + + +##### kcal_resourcefeatureplan (module) ######### + +tde_add_kpart( kcal_resourcefeatureplan AUTOMOC + SOURCES kcal_resourcefeatureplanplugin.cpp + LINK kcal_resourcefeatureplan-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### featureplancommon (static) ################ + +add_custom_command( + OUTPUT kde-features.h kde-features.cpp kde-features_parser.h kde-features_parser.cpp + COMMAND ${KXML_COMPILER_EXECUTABLE} --custom-parser ${CMAKE_CURRENT_SOURCE_DIR}/kde-features.rng >/dev/null + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/kde-features.rng ${KXML_COMPILER_TARGET} ) + +tde_add_library( featureplancommon STATIC_PIC + SOURCES + kde-features.cpp kde-features_parser.cpp prefs.kcfgc +) + + +##### kcal_resourcefeatureplan (shared) ######### + +tde_add_library( kcal_resourcefeatureplan SHARED AUTOMOC + SOURCES + kcal_resourcefeatureplan.cpp kcal_resourcefeatureplanconfig.cpp + VERSION 1.0.0 + LINK featureplancommon-static tdepim-shared + DESTINATION ${LIB_INSTALL_DIR} +) |