Skip to content

Commit

Permalink
[coredump] Set Language Standard To C++17
Browse files Browse the repository at this point in the history
Needed for older linux distro that don't use C++17 (or newer) be default.
  • Loading branch information
CuriousTommy committed Jun 13, 2024
1 parent 003d72f commit 8adc031
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hosttools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ add_executable(darling-coredump
src/coredump/main.cpp
)

target_compile_options(darling-coredump PRIVATE
-std=c++17
)

target_include_directories(darling-coredump PRIVATE
include

Expand Down

0 comments on commit 8adc031

Please sign in to comment.