diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-03-15 15:32:40 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2024-03-02 18:52:12 +0100 |
commit | 12bd9b6b2bba50da9c3444dfb42b985ed2a6a7c1 (patch) | |
tree | 8319b9e98b3fa1f2a2a61d7719eb9a714c7ad66a /examples/customlayout/CMakeLists.txt | |
parent | 34587584ab80fd696cc9d73dda1326f175125ddf (diff) | |
download | tqt3-12bd9b6b2bba50da9c3444dfb42b985ed2a6a7c1.tar.gz tqt3-12bd9b6b2bba50da9c3444dfb42b985ed2a6a7c1.zip |
Conversion to the cmake building system.feat/cmakeConv
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'examples/customlayout/CMakeLists.txt')
-rw-r--r-- | examples/customlayout/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/customlayout/CMakeLists.txt b/examples/customlayout/CMakeLists.txt new file mode 100644 index 000000000..acff454ef --- /dev/null +++ b/examples/customlayout/CMakeLists.txt @@ -0,0 +1,22 @@ +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR}/include +) + +link_directories() + + +##### customlayout (executable) + +tde_add_executable( customlayout + + SOURCES + border.cpp + card.cpp + flow.cpp + main.cpp + LINK + tqt-mt-shared +) + +tqt_automoc( customlayout ) |