1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-02 01:01:57 +00:00
Files
hypervisor/src/shared/CMakeLists.txt
Maurice Heumann 6f7f0f74c4 Optimize CMake
2022-12-25 17:54:31 +01:00

9 lines
281 B
CMake

file(GLOB shared_sources CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
file(GLOB shared_headers CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp)
add_library(shared INTERFACE
${shared_headers}
)
target_include_directories(shared INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})