8 lines
219 B
CMake
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}"
|
|
)
|