14 lines
277 B
CMake
14 lines
277 B
CMake
set(SRC
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(fileserver ${SRC})
|
|
target_link_libraries(fileserver qhttpengine)
|
|
set_target_properties(fileserver PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}"
|
|
)
|
|
|
|
install(TARGETS fileserver
|
|
RUNTIME DESTINATION ${EXAMPLES_BIN_DIR}
|
|
)
|