WIP, Continue writing additional parser tests, add big object flag to test cmake

This commit is contained in:
ado
2023-07-30 22:59:37 +02:00
parent 9bf1dd6041
commit 84a7d46cbf
3 changed files with 169 additions and 126 deletions

View File

@@ -12,6 +12,12 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
target_compile_options(ssp INTERFACE -Wall -Wextra)
endif()
if (MSVC)
add_compile_options(/bigobj)
else ()
add_compile_options(-Wa,-mbig-obj)
endif ()
include(FetchContent)
FetchContent_Declare(
DOCTEST