Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use std::filesystem #372

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ option(SONATA_CXX_WARNINGS "Compile C++ with warnings as errors, for glibcxx tur

set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake)

set(SONATA_CXX_MINIMUM_STANDARD 14)
set(SONATA_CXX_MINIMUM_STANDARD 17)
if(NOT "${CMAKE_CXX_STANDARD}")
set(CMAKE_CXX_STANDARD ${SONATA_CXX_MINIMUM_STANDARD})
elseif("${CMAKE_CXX_STANDARD}" LESS SONATA_CXX_MINIMUM_STANDARD)
Expand All @@ -78,7 +78,7 @@ if (EXTLIB_FROM_SUBMODULES)
add_subdirectory(extlib EXCLUDE_FROM_ALL)
else()
if (SONATA_TESTS)
find_package(Catch2 REQUIRED)
find_package(Catch2 3.5 REQUIRED)
endif()
find_package(HighFive REQUIRED)
find_package(fmt REQUIRED)
Expand Down
Loading
Loading