You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
398 B
28 lines
398 B
5 years ago
|
|
||
|
##### 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}
|
||
|
)
|