mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
14 lines
548 B
CMake
14 lines
548 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(SOCI CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE $<IF:$<TARGET_EXISTS:SOCI::soci_mysql>,SOCI::soci_mysql,SOCI::soci_mysql_static>)
|
|
target_link_libraries(main PRIVATE $<IF:$<TARGET_EXISTS:SOCI::soci_postgresql>,SOCI::soci_postgresql,SOCI::soci_postgresql_static>)
|
|
target_link_libraries(main PRIVATE $<IF:$<TARGET_EXISTS:SOCI::soci_sqlite3>,SOCI::soci_sqlite3,SOCI::soci_sqlite3_static>)
|