mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-01 08:14:57 +08:00
10 lines
157 B
CMake
10 lines
157 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
|
|
project(Cpp17Test)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
add_executable(cpp17test main.cpp)
|
|
|