mirror of
https://github.com/yuzu-emu/ext-boost.git
synced 2025-01-03 15:45:56 +00:00
15 lines
341 B
CMake
15 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
|
|
####################
|