1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:17:44 +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

@ -1,4 +1,4 @@
file(GLOB CMD_SOURCES "*.cpp")
file(GLOB CMD_SOURCES CONFIGURE_DEPENDS "*.cpp")
foreach(CMD_SRC ${CMD_SOURCES})
get_filename_component(CMD_NAME ${CMD_SRC} NAME_WE)