zhangmeng
2021-07-02 056f71f24cefaf88f2a93714c6678c03ed5f1e0e
1
2
3
4
5
6
7
8
9
10
11
12
13
####################
# 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
####################