Files
qhttpengine/examples/auth/CMakeLists.txt
2016-05-28 12:17:07 -07:00

8 lines
219 B
CMake

# Client
add_executable(authclient client.cpp)
target_link_libraries(authclient QHttpEngine)
target_compile_features(authclient PRIVATE cxx_lambdas)
install(TARGETS authclient
RUNTIME DESTINATION "${EXAMPLE_DIR}"
)