mirror of
https://github.com/springzfx/cgproxy.git
synced 2026-01-07 13:07:56 +08:00
7 lines
311 B
CMake
7 lines
311 B
CMake
include_directories(${PROJECT_SOURCE_DIR})
|
|
include_directories(${PROJECT_SOURCE_DIR}/src)
|
|
|
|
find_package(nlohmann_json REQUIRED)
|
|
add_executable(client_test socket_client_test.cpp
|
|
../src/socket_client.cpp ../src/common.cpp ../src/config.cpp)
|
|
target_link_libraries(client_test nlohmann_json::nlohmann_json) |