Skip to content

Commit

Permalink
{cmake} Use C++17 for the plugin
Browse files Browse the repository at this point in the history
We use std::clamp which is a C++17 function.

Part of #9
  • Loading branch information
asmaloney committed Jun 14, 2024
1 parent 2c9147a commit 97fa989
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ if ( PLUGIN-3rdParty_MESH_IO )

AddPlugin( NAME ${PROJECT_NAME} TYPE io )

target_compile_features( ${PROJECT_NAME}
PRIVATE
cxx_std_17
)

include_directories( BEFORE extern/assimp/include )

add_subdirectory( include )
Expand Down

0 comments on commit 97fa989

Please sign in to comment.