mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-04-19 05:32:55 +00:00
9 lines
281 B
CMake
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})
|