summaryrefslogtreecommitdiffstats
path: root/tutorial/t6
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-03-15 15:32:40 +0100
committerAlexander Golubev <fatzer2@gmail.com>2024-03-08 14:50:56 +0300
commitf696b7c31f1ea08f0a98fd7201cea9e2e4492ed5 (patch)
treeea0bdd7feceb14ad466b432b513721bd0f2d065c /tutorial/t6
parentfad4acbe084403340bb0ee6979ea18db464e7085 (diff)
downloadtqt-f696b7c31f1ea08f0a98fd7201cea9e2e4492ed5.tar.gz
tqt-f696b7c31f1ea08f0a98fd7201cea9e2e4492ed5.zip
Conversion to the cmake building system.
Signed-off-by: gregory guy <gregory-tde@laposte.net> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tutorial/t6')
-rw-r--r--tutorial/t6/CMakeLists.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/tutorial/t6/CMakeLists.txt b/tutorial/t6/CMakeLists.txt
new file mode 100644
index 000000000..41d689524
--- /dev/null
+++ b/tutorial/t6/CMakeLists.txt
@@ -0,0 +1,18 @@
+include_directories(
+ ${CMAKE_BINARY_DIR}/include
+)
+
+link_directories()
+
+
+##### t6 (executable)
+
+tde_add_executable( t6
+
+ SOURCES
+ main.cpp
+ LINK
+ tqt-mt-shared
+)
+
+tqt_automoc( t6 )