You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
####################
|