diff options
author | asynts <asynts@gmail.com> | 2020-10-28 20:01:29 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-29 11:52:47 +0100 |
commit | 607931268eabb002fbe7ffaa1550d09e8dac159f (patch) | |
tree | 51c3fb17d605b58e22d899398d88659862141462 /Libraries/LibC | |
parent | 3dbf4c62b00c2deef36e283c33dcbd214d073313 (diff) | |
download | serenity-607931268eabb002fbe7ffaa1550d09e8dac159f.zip |
CMake: Use CONFIGURE_DEPENDS in existing globs.
Diffstat (limited to 'Libraries/LibC')
-rw-r--r-- | Libraries/LibC/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibC/CMakeLists.txt b/Libraries/LibC/CMakeLists.txt index 7d8960be66..62b6ae9988 100644 --- a/Libraries/LibC/CMakeLists.txt +++ b/Libraries/LibC/CMakeLists.txt @@ -48,8 +48,8 @@ set(LIBC_SOURCES wchar.cpp ) -file(GLOB AK_SOURCES "../../AK/*.cpp") -file(GLOB ELF_SOURCES "../LibELF/*.cpp") +file(GLOB AK_SOURCES CONFIGURE_DEPENDS "../../AK/*.cpp") +file(GLOB ELF_SOURCES CONFIGURE_DEPENDS "../LibELF/*.cpp") set(ELF_SOURCES ${ELF_SOURCES} ../LibELF/Arch/i386/plt_trampoline.S) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning-option -DSERENITY_LIBC_BUILD") |