blob: a5f0c024d0c375c7f695d81653c5476d5c286a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}/include
)
##### maketqpf (executable)
set( target maketqpf )
tde_add_executable( ${target}
SOURCES main.cpp
LINK tqt-mt-shared
DESTINATION ${BIN_INSTALL_DIR}
)
tqt_automoc( ${target} )
|