liuxiaolong
2021-07-20 58d904a328c0d849769b483e901a0be9426b8209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
####################
# 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
####################