summaryrefslogtreecommitdiffstats
path: root/src/commands
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2016-09-18 20:59:45 +0200
committerSlávek Banko <[email protected]>2016-09-18 20:59:45 +0200
commit3f7006b6807add37a3de957c525600a31424a498 (patch)
treec0a1c00a80c3ec28c7f38da2e5e91ff6e3a385be /src/commands
parent3fbf943ee75e74a85c489508303987cfd5f8ea01 (diff)
downloadtellico-3f7006b6807add37a3de957c525600a31424a498.tar.gz
tellico-3f7006b6807add37a3de957c525600a31424a498.zip
Initial cmake conversion
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/CMakeLists.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/commands/CMakeLists.txt b/src/commands/CMakeLists.txt
new file mode 100644
index 0000000..e0628fc
--- /dev/null
+++ b/src/commands/CMakeLists.txt
@@ -0,0 +1,34 @@
+#################################################
+#
+# (C) 2016 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### commands (static) #########################
+
+tde_add_library( commands STATIC_PIC AUTOMOC
+ SOURCES
+ addentries.cpp modifyentries.cpp removeentries.cpp
+ addloans.cpp modifyloans.cpp removeloans.cpp
+ fieldcommand.cpp filtercommand.cpp reorderfields.cpp
+ group.cpp collectioncommand.cpp renamecollection.cpp
+ updateentries.cpp
+)