mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
10 lines
135 B
CMake
10 lines
135 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
project(odbccpp)
|
|
|
|
find_package(ODBC REQUIRED)
|
|
|
|
add_subdirectory(src)
|