Skip to content

mpusz/cmake-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 

Repository files navigation

cmake-scripts

Common CMake tools and wrappers to use in other repositories.

scripts.cmake

A wrapper file including all other CMake modules:

  • conan.cmake
  • install.cmake
  • static_analysis.cmake
  • warnings.cmake

conan.cmake

  • conan_init(generator) - initializes CMake with data from Conan Package Manger (if present)
  • conan_check_testing(test_framework) - checks if Conan installed testing dependencies

install.cmake

  • CMAKE_SCRIPTS_ROOT - a path to scripts directory
  • install_targets(targets...) - marks provided targets for installation in typical destination directories
  • configure_and_install(configure_in_file_path, namespace, version_compare_rules) - creates CMake package version and config files based on a provided template, and installs them together with ${CMAKE_PROJECT_NAME}Targets ``EXPORT` target.

static_analysis.cmake

  • enable_clang_tidy() - enable clang-tidy analysis
  • enable_iwyu() - enable Include What You Use

warnings.cmake

  • set_warnings([TREAT_AS_ERRORS]) - very restrictive compilation warning flags settings for Continuous Integration and local builds. It should not be used in the library project CMakeLists.txt file to not force other users using this library to compile their projects with our flags or even worse to modify their preset flags by our scripts.

About

CMake scripts shared among other repositories

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages