-
cmake_minimum_required (VERSION 3.14 )include (FetchContent )FetchContent_Declare (ixmURL https://get.ixm.one )FetchContent_MakeAvailable (ixm)Import IXM with just 4 lines of code! -
cmake_minimum_required (VERSION 3.14 )include (FetchContent )FetchContent_Declare (ixmURL https://get.ixm.one )FetchContent_MakeAvailable (ixm)project (MyProjectBLUEPRINT Coven)Automatically generate your projects with blueprints! -
dict (APPEND my-dictionary key1 "hello" )dict (GET my-dictionary key items)foreach (itemIN LISTS items)log (INFO "Got: ${item}" )endforeach ()Have key value pairs by using the dict()type! -
fetch (HUB {catchorg/Catch2@2.9.2}ALIAS catchCOMPONENT tests OPTIONSCATCH_BUILD_TESTING OFF CATCH_ENABLE_WERROR OFF )target_link_libraries (my-targetPRIVATE catch::catch)Download and use external dependencies with ease! -
list (APPEND tidy-names9 8 7 6.0 5.0 )list (TRANSFORM tidy-namesPREPEND clang-tidy- )find (PROGRAM ${tidy-names}COMPONENT Tidy)Implement find_package()files with little effort!