1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

Meta: Add a cmake flag for building for compiler explorer

We don't need to build tests/binaries for CE.
This commit is contained in:
Ali Mohammad Pur 2021-12-22 18:51:52 +03:30 committed by Ali Mohammad Pur
parent a06a5df297
commit f20e0036bd
2 changed files with 2 additions and 1 deletions

View file

@ -441,7 +441,7 @@ if (BUILD_LAGOM)
SOURCES ${LIBX86_SOURCES}
)
if (NOT ENABLE_OSS_FUZZ AND NOT ENABLE_FUZZER_SANITIZER)
if (NOT ENABLE_OSS_FUZZ AND NOT ENABLE_FUZZER_SANITIZER AND NOT ENABLE_COMPILER_EXPLORER_BUILD)
# Lagom Examples
add_executable(TestApp TestApp.cpp)
target_link_libraries(TestApp LagomCore)