summaryrefslogtreecommitdiffstats
path: root/ksim/library
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-10 20:47:02 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-10 20:47:02 -0600
commitc1a8ee04fbfe9851c1f788bcdcf3a5339ce1e478 (patch)
treeb60bf0191b08974e1ad29fd808d298aaeb29ef5a /ksim/library
parent42177b2709de3eb2ef8ecde7d2a027fbb05a218c (diff)
downloadtdeutils-c1a8ee04fbfe9851c1f788bcdcf3a5339ce1e478.tar.gz
tdeutils-c1a8ee04fbfe9851c1f788bcdcf3a5339ce1e478.zip
Initial conversion to cmake.
Thanks to Fat-Zer.
Diffstat (limited to 'ksim/library')
-rw-r--r--ksim/library/CMakeLists.txt54
1 files changed, 54 insertions, 0 deletions
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()
+