Skip to content
Merged
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
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# use force DWARF 4 debug format since not all tools might be able to handle DWARF 5 yet - e.g. valgrind on ubuntu 20.04
add_compile_options(-gdwarf-4)
endif()
if (APPLE)
# CMake is sometimes chosing the wrong compiler on macos-* runners
# see https://github.com/actions/runner/issues/4034
add_compile_options(-Wno-poison-system-directories)
endif()
endif()

add_library(simplecpp_obj OBJECT simplecpp.cpp)
Expand Down