2021-02-24 10:30:19 +00:00
|
|
|
add_compile_options(-O2)
|
|
|
|
|
2022-03-05 01:02:09 +00:00
|
|
|
# Escape hatch target to prevent runtime startup libraries from having coverage enabled
|
|
|
|
# at awkward points in program initialization
|
|
|
|
add_library(NoCoverage INTERFACE)
|
|
|
|
|
|
|
|
if (ENABLE_USERSPACE_COVERAGE_COLLECTION)
|
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang$")
|
|
|
|
add_compile_options(-fprofile-instr-generate -fcoverage-mapping)
|
|
|
|
add_link_options(-fprofile-instr-generate -fcoverage-mapping)
|
|
|
|
|
|
|
|
target_compile_options(NoCoverage INTERFACE -fno-profile-generate -fno-profile-instr-use -fno-profile-instr-generate -fno-coverage-mapping)
|
|
|
|
target_link_options(NoCoverage INTERFACE -fno-profile-generate -fno-profile-instr-use -fno-profile-instr-generate -fno-coverage-mapping)
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "ENABLE_USERSPACE_COVERAGE_COLLECTION not supported yet for ${CMAKE_CXX_COMPILER_ID}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-01-12 11:05:23 +00:00
|
|
|
add_subdirectory(Applications)
|
2021-01-12 11:00:09 +00:00
|
|
|
add_subdirectory(Demos)
|
2021-01-12 11:18:55 +00:00
|
|
|
add_subdirectory(DevTools)
|
2020-10-10 15:17:49 +00:00
|
|
|
add_subdirectory(DynamicLoader)
|
2021-01-12 11:03:28 +00:00
|
|
|
add_subdirectory(Games)
|
2021-01-12 11:17:30 +00:00
|
|
|
add_subdirectory(Libraries)
|
2021-04-04 10:25:01 +00:00
|
|
|
add_subdirectory(Applets)
|
2021-01-12 11:23:01 +00:00
|
|
|
add_subdirectory(Services)
|
2021-01-12 10:53:14 +00:00
|
|
|
add_subdirectory(Shell)
|
2021-01-12 10:57:58 +00:00
|
|
|
add_subdirectory(Utilities)
|