summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-10-13 14:00:59 -0600
committerLinus Groh <mail@linusgroh.de>2022-10-16 16:36:39 +0200
commit1ca48a2aec0548f1aeb2392a03ebb10188a58ed8 (patch)
tree44f1a6f47530aaad4ea215f95812bda777478f14 /Userland/Libraries/LibC
parenta34f8c444bfbba2d723b00a7659284da1ef4ed15 (diff)
downloadserenity-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.txt1
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")