mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:18:11 +00:00

For some reason I don't yet understand, building the kernel with -O2 produces a way-too-large kernel on some people's systems. Since there are some really nice performance benefits from -O2 in userspace, let's do a compromise and build Userland with -O2 but put Kernel back into the -Os box for now.
13 lines
325 B
CMake
13 lines
325 B
CMake
add_compile_options(-O2)
|
|
|
|
add_subdirectory(Applications)
|
|
add_subdirectory(Demos)
|
|
add_subdirectory(DevTools)
|
|
add_subdirectory(DynamicLoader)
|
|
add_subdirectory(Games)
|
|
add_subdirectory(Libraries)
|
|
add_subdirectory(MenuApplets)
|
|
add_subdirectory(Services)
|
|
add_subdirectory(Shell)
|
|
add_subdirectory(Tests)
|
|
add_subdirectory(Utilities)
|