Inihbit warning when building UnitTests
All checks were successful
Publish doxygen documentation to seodisparate.com / doxygen-gen-and-publish (push) Successful in 2s
Run UnitTests / build-and-run-unittests (push) Successful in 35s

Ignore "-Wsign-compare"
This commit is contained in:
Stephen Seo 2024-07-15 13:20:19 +09:00
parent 6778f570d9
commit 09104524b5

View file

@ -57,6 +57,7 @@ set(UnitTests_SOURCES
add_executable(UnitTests ${UnitTests_SOURCES}) add_executable(UnitTests ${UnitTests_SOURCES})
target_link_libraries(UnitTests EntityComponentSystem) target_link_libraries(UnitTests EntityComponentSystem)
target_compile_features(UnitTests PUBLIC cxx_std_14) target_compile_features(UnitTests PUBLIC cxx_std_14)
target_compile_options(UnitTests PRIVATE "-Wno-sign-compare")
enable_testing() enable_testing()
add_test(NAME UnitTests COMMAND UnitTests) add_test(NAME UnitTests COMMAND UnitTests)