- Split the large CMakeList.
- Remove travis
- Remove gitlab-ci.yml
This commit is contained in:
Arthur Sonzogni
2021-06-26 15:14:27 +02:00
committed by GitHub
parent 2ea480f4f6
commit a2e7ff852e
11 changed files with 206 additions and 239 deletions

7
cmake/iwyu.cmake Normal file
View File

@@ -0,0 +1,7 @@
find_program(iwyu_path NAMES include-what-you-use iwyu)
if(iwyu_path)
set_property(TARGET ${lib}
PROPERTY ${iwyu_path} -Xiwyu
--mapping_file ${CMAKE_CURRENT_SOURCE_DIR}/iwyu.impl
)
endif()