mirror of
https://github.com/yuzu-emu/ext-boost.git
synced 2024-12-23 00:15:31 +00:00
14 lines
260 B
CMake
14 lines
260 B
CMake
|
####################
|
||
|
# add include headers to IDE
|
||
|
|
||
|
file(GLOB include_files
|
||
|
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
||
|
"*.hpp"
|
||
|
)
|
||
|
add_custom_target(safe_numerics SOURCES ${include_files})
|
||
|
|
||
|
add_subdirectory("concept")
|
||
|
|
||
|
# end headers in IDE
|
||
|
####################
|