mirror of
https://git.suyu.dev/suyu/ext-boost.git
synced 2025-12-21 21:26:07 +01:00
14 lines
341 B
CMake
14 lines
341 B
CMake
####################
|
|
# add include headers to IDE
|
|
|
|
set(USE_FOLDERS TRUE)
|
|
|
|
file(GLOB include_files
|
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/*.hpp"
|
|
)
|
|
add_custom_target(concepts SOURCES ${include_files})
|
|
set_target_properties(concepts PROPERTIES FOLDER "safe_numerics")
|
|
|
|
# end headers in IDE
|
|
####################
|