1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 17:37:47 +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 AK_TEST_SOURCES "*.cpp")
file(GLOB AK_TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
foreach(source ${AK_TEST_SOURCES})
get_filename_component(name ${source} NAME_WE)