2021-02-24 05:30:19 -05:00
|
|
|
add_compile_options(-O2)
|
|
|
|
|
2022-03-04 20:02:09 -05: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 06:05:23 -05:00
|
|
|
add_subdirectory(Applications)
|
2021-01-12 06:00:09 -05:00
|
|
|
add_subdirectory(Demos)
|
2021-01-12 06:18:55 -05:00
|
|
|
add_subdirectory(DevTools)
|
2020-10-10 11:17:49 -04:00
|
|
|
add_subdirectory(DynamicLoader)
|
2021-01-12 06:03:28 -05:00
|
|
|
add_subdirectory(Games)
|
2021-01-12 06:17:30 -05:00
|
|
|
add_subdirectory(Libraries)
|
2022-09-26 22:53:51 -04:00
|
|
|
add_subdirectory(BuggieBox)
|
2021-04-04 06:25:01 -04:00
|
|
|
add_subdirectory(Applets)
|
2021-01-12 06:23:01 -05:00
|
|
|
add_subdirectory(Services)
|
2021-01-12 05:53:14 -05:00
|
|
|
add_subdirectory(Shell)
|
2021-01-12 05:57:58 -05:00
|
|
|
add_subdirectory(Utilities)
|