diff options
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/CMakeLists.txt')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/CMakeLists.txt b/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/CMakeLists.txt new file mode 100644 index 0000000..13a2678 --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.7) +project(soci-test CXX) + +if(APPLE) + set(CMAKE_CXX_STANDARD 11) +endif() + +add_executable(main main.cpp) + +find_package(unofficial-rest-rpc CONFIG REQUIRED) +target_link_libraries(main unofficial::rest-rpc::rest-rpc) |