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