blob: fbd0f198d1c3e645d907b96fe35f4c6f67efc27e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}
)
|