From c1a8ee04fbfe9851c1f788bcdcf3a5339ce1e478 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sat, 10 Nov 2012 20:47:02 -0600 Subject: Initial conversion to cmake. Thanks to Fat-Zer. --- ksim/library/CMakeLists.txt | 54 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 ksim/library/CMakeLists.txt (limited to 'ksim/library') diff --git a/ksim/library/CMakeLists.txt b/ksim/library/CMakeLists.txt new file mode 100644 index 0000000..44c152e --- /dev/null +++ b/ksim/library/CMakeLists.txt @@ -0,0 +1,54 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( libksimcore ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### ksimcore (shared) ######################### + +tde_add_library( ksimcore SHARED AUTOMOC + SOURCES common.cpp themeloader.cpp chart.cpp + label.cpp led.cpp progress.cpp + pluginglobal.cpp pluginloader.cpp + pluginmodule.cpp ksimconfig.cpp + VERSION 1.0 + LINK tdeui-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### headers ################################### + +install( FILES chart.h common.h ksimconfig.h + label.h led.h pluginglobal.h pluginloader.h + pluginmodule.h progress.h themeloader.h + themetypes.h + DESTINATION ${INCLUDE_INSTALL_DIR}/ksim ) + + +##### install cmake export file ################# +# +# It's not raeally neccessary but I belive it +# can be usefull. +tde_install_export() + -- cgit v1.2.1