15 lines
339 B
CMake
15 lines
339 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(concept SOURCES ${include_files})
|
|
set_target_properties(concept PROPERTIES FOLDER "safe_numerics")
|
|
|
|
# end headers in IDE
|
|
####################
|