17 lines
341 B
CMake
17 lines
341 B
CMake
set(SRC
|
|
apihandler.cpp
|
|
main.cpp
|
|
)
|
|
|
|
qt5_add_resources(QRC resources.qrc)
|
|
|
|
add_executable(chatserver ${SRC} ${QRC})
|
|
target_link_libraries(chatserver qhttpengine)
|
|
set_target_properties(chatserver PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}"
|
|
)
|
|
|
|
install(TARGETS chatserver
|
|
RUNTIME DESTINATION ${EXAMPLES_BIN_DIR}
|
|
)
|