1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

CMake: Use CONFIGURE_DEPENDS in existing globs.

This commit is contained in:
asynts 2020-10-28 20:01:29 +01:00 committed by Andreas Kling
parent 3dbf4c62b0
commit 607931268e
6 changed files with 24 additions and 24 deletions

View file

@ -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")