mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
9 lines
410 B
CMake
9 lines
410 B
CMake
FILE(GLOB sample_com_server_SOURCES *.cpp)
|
|
SET(sample_com_server_HEADERS server.h)
|
|
|
|
QT4_WRAP_CPP(sample_com_server_HEADERS_MOC ${sample_com_server_HEADERS})
|
|
|
|
ADD_EXECUTABLE(sample_com_server ${sample_com_server_SOURCES} ${sample_com_server_HEADERS_MOC})
|
|
|
|
TARGET_LINK_LIBRARIES(sample_com_server blackmisc ${QT_LIBRARIES})
|
|
SET_TARGET_PROPERTIES(sample_com_server PROPERTIES PROJECT_LABEL "Samples - Com Server") |