The last CMake library you'll ever use
cmake_minimum_required(VERSION 3.14) include(FetchContent) FetchContent_Declare(ixm URL https://get.ixm.one) FetchContent_MakeAvailable(ixm)
cmake_minimum_required(VERSION 3.14) include(FetchContent) FetchContent_Declare(ixm URL https://get.ixm.one) FetchContent_MakeAvailable(ixm) project(MyProject BLUEPRINT Coven)
dict(APPEND my-dictionary key 1 "hello") dict(GET my-dictionary key items) foreach(item IN LISTS items) log(INFO "Got: ${item}") endforeach()
dict()
fetch(HUB{catchorg/Catch2@2.9.2} ALIAS catch COMPONENT tests OPTIONS CATCH_BUILD_TESTING OFF CATCH_ENABLE_WERROR OFF) target_link_libraries(my-target PRIVATE catch::catch)
list(APPEND tidy-names 9 8 7 6.0 5.0) list(TRANSFORM tidy-names PREPEND clang-tidy-) find(PROGRAM ${tidy-names} COMPONENT Tidy)
find_package()