diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-14 10:54:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-16 18:40:43 +0900 |
commit | c6b7fdebde2b08051a7c6b1c78d15c25907ba91b (patch) | |
tree | a51ab34e8dd55918f9eb0fff53fdeafbad2f12a4 /konsole/terminalhere/CMakeLists.txt | |
parent | b48f7462dac62db1860f2bee228fdee946601451 (diff) | |
download | tdebase-c6b7fdebde2b08051a7c6b1c78d15c25907ba91b.tar.gz tdebase-c6b7fdebde2b08051a7c6b1c78d15c25907ba91b.zip |
Fixed handling of RMC -> Actions -> Open terminal here.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d4b559f91838a9d3e63c1aed0b3960dca4e4df14)
Diffstat (limited to 'konsole/terminalhere/CMakeLists.txt')
-rw-r--r-- | konsole/terminalhere/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/konsole/terminalhere/CMakeLists.txt b/konsole/terminalhere/CMakeLists.txt new file mode 100644 index 000000000..fbd0f198d --- /dev/null +++ b/konsole/terminalhere/CMakeLists.txt @@ -0,0 +1,27 @@ + +##### config ######## + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### terminalhere (executable) ######## + +set( target terminalhere ) + +set( ${target}_SRCS + terminalhere.cpp +) + +tde_add_executable( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK tdeio-shared + DESTINATION ${BIN_INSTALL_DIR} +) |