diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-12-13 18:35:41 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-12-13 18:42:05 +0100 |
commit | 0557917aa98c792eb316ce176c97849f3e7bdb3e (patch) | |
tree | 4ee596079b11ec246e6355a33563aa41d3e0e364 /src/CMakeLists.txt | |
parent | 63cec2ebf40be205347bd97b53ad2a77dbcdcb38 (diff) | |
download | kcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.tar.gz kcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.zip |
Fix structure of directories
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..2166732 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,45 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### kcpuload (executable) + +tde_add_executable( kcpuload AUTOMOC + + SOURCES + icontoggleaction.cpp + kcpudock.cpp + kcpuload.cpp + kcpuproc.cpp + main.cpp + statdock.cpp + speeddialog.cpp + statpopup.cpp + LINK + tdecore-shared + tdeui-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons + +tde_install_icons( kcpuload ) + + +##### other data + +install( FILES kcpuload.desktop + DESTINATION ${APPS_INSTALL_DIR}/System +) |