Skip to content

Commit

Permalink
[CMakeLists]: Update minimum CMake version, use C++ 17
Browse files Browse the repository at this point in the history
  • Loading branch information
cszach committed Dec 18, 2023
1 parent 85fd310 commit f4824c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.5)
cmake_policy(SET CMP0135 NEW)

project(Raydiance)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

Expand Down

0 comments on commit f4824c0

Please sign in to comment.