Skip to content
Open
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
2 changes: 1 addition & 1 deletion 3rdparty/cudd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ add_library(cudd OBJECT
util/util.h
)

target_compile_features(cudd PUBLIC cxx_std_20)
target_compile_features(cudd PUBLIC cxx_std_23)

add_library(cudd_headers INTERFACE)
target_include_directories(cudd_headers
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/re2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add_library(re2 OBJECT
util/utf.h
util/util.h)

target_compile_features(re2 PUBLIC cxx_std_20)
target_compile_features(re2 PUBLIC cxx_std_23)

if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
target_link_libraries(re2 PUBLIC pthread)
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/simlib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_library(simlib OBJECT src/explicit_lts_sim.cc)

target_compile_features(simlib PUBLIC cxx_std_20)
target_compile_features(simlib PUBLIC cxx_std_23)

add_library(simlib_headers INTERFACE)
target_include_directories(simlib_headers
Expand Down
3 changes: 1 addition & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ add_library (libmata STATIC
$<TARGET_OBJECTS:re2>
)

# libmata needs at least c++20
target_compile_features (libmata PUBLIC cxx_std_20)
target_compile_features (libmata PUBLIC cxx_std_23)

set_target_properties (libmata PROPERTIES
OUTPUT_NAME mata
Expand Down
Loading