1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-05 02:31:51 +00:00

Optimize CMake

This commit is contained in:
Maurice Heumann
2022-12-25 17:54:31 +01:00
parent e379103e0f
commit 6f7f0f74c4
3 changed files with 11 additions and 7 deletions

View File

@ -1,5 +1,5 @@
file(GLOB_RECURSE runner_sources ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
file(GLOB_RECURSE runner_headers ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp)
file(GLOB_RECURSE runner_sources CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
file(GLOB_RECURSE runner_headers CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp)
add_executable(runner #WIN32
${runner_sources}