mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
12 lines
250 B
CMake
12 lines
250 B
CMake
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)
|