diff options
author | gregory guy <[email protected]> | 2020-10-12 15:43:57 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-11-05 18:49:06 +0100 |
commit | f84a48543b2471121d36334e094e0f85f9b9c431 (patch) | |
tree | 82d605f1f611a679bce6848d71ddaaf783be9287 /src/flowparts/CMakeLists.txt | |
parent | 33040db93b91f5ca502dcc682d944fcfe4cd331a (diff) | |
download | ktechlab-f84a48543b2471121d36334e094e0f85f9b9c431.tar.gz ktechlab-f84a48543b2471121d36334e094e0f85f9b9c431.zip |
Conversion to the cmake building system.
Added man pages taken from the Debian packaging system.
Move the ktechlab.desktop file into XDG_APPS_INSTALL_DIR directory,
see TDE/tde#26 and bug 2408.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit a9c86866c380e503dd75797b5c2d129bfb622a9e)
Diffstat (limited to 'src/flowparts/CMakeLists.txt')
-rw-r--r-- | src/flowparts/CMakeLists.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/flowparts/CMakeLists.txt b/src/flowparts/CMakeLists.txt new file mode 100644 index 0000000..733a07e --- /dev/null +++ b/src/flowparts/CMakeLists.txt @@ -0,0 +1,35 @@ + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_SOURCE_DIR}/src/electronics + ${CMAKE_SOURCE_DIR}/src/electronics/components + ${CMAKE_SOURCE_DIR}/src/languages + ${CMAKE_SOURCE_DIR}/src/micro + +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### flowparts (static) + +tde_add_library( flowparts STATIC_PIC AUTOMOC + + SOURCES + callsub.cpp delay.cpp end.cpp forloop.cpp + readport.cpp setpin.cpp start.cpp + testpin.cpp unary.cpp varassignment.cpp + varcomparison.cpp writeport.cpp repeat.cpp + while.cpp sub.cpp count.cpp embed.cpp + interrupt.cpp keypad.cpp pulse.cpp + sevenseg.cpp inputbutton.cpp + flowpart.cpp pinmapping.cpp +) |