blob: f1f5367b3f2c30a4853433a6b27da3063a3dc2dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include_directories(
${CMAKE_BINARY_DIR}/include
)
link_directories()
##### t4 (executable)
tde_add_executable( t4
SOURCES
main.cpp
LINK
tqt-mt-shared
)
tqt_automoc( t4 )
|