mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
11 lines
274 B
Plaintext
11 lines
274 B
Plaintext
cmake_minimum_required(VERSION 3.10)
|
|
project(UniquePtrWithPool LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
# Add source files
|
|
add_executable(UniquePtrWithPool Main.cpp)
|
|
|
|
target_include_directories(UniquePtrWithPool PRIVATE ../../include)
|