diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-10-13 14:00:59 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-16 16:36:39 +0200 |
commit | 1ca48a2aec0548f1aeb2392a03ebb10188a58ed8 (patch) | |
tree | 44f1a6f47530aaad4ea215f95812bda777478f14 /Userland/Libraries/LibC | |
parent | a34f8c444bfbba2d723b00a7659284da1ef4ed15 (diff) | |
download | serenity-1ca48a2aec0548f1aeb2392a03ebb10188a58ed8.zip |
AK+Userland: Use a CMake variable for AK_SOURCES instead of GLOB
This lets us remove a glob pattern from LibC, the DynamicLoader, and,
later, Lagom. The Kernel already has its own separate list of AK files
that it wants, which is only a subset of all AK files.
Diffstat (limited to 'Userland/Libraries/LibC')
-rw-r--r-- | Userland/Libraries/LibC/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/CMakeLists.txt b/Userland/Libraries/LibC/CMakeLists.txt index 201cc622ce..97d76aaee5 100644 --- a/Userland/Libraries/LibC/CMakeLists.txt +++ b/Userland/Libraries/LibC/CMakeLists.txt @@ -76,7 +76,6 @@ set(LIBC_SOURCES wstdio.cpp ) -file(GLOB AK_SOURCES CONFIGURE_DEPENDS "../../../AK/*.cpp") file(GLOB ELF_SOURCES CONFIGURE_DEPENDS "../LibELF/*.cpp") if ("${SERENITY_ARCH}" STREQUAL "aarch64") |