Skip to content

Commit

Permalink
Fix CMakePPLang include
Browse files Browse the repository at this point in the history
  • Loading branch information
zachcran authored Aug 17, 2024
1 parent 8becf0c commit c58f371
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cmake/get_cmakepp_lang.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function(get_cmakepp_lang)
# Store whether we are building tests or not, then turn off the tests
set(build_testing_old "${BUILD_TESTING}")
set(BUILD_TESTING OFF CACHE BOOL "" FORCE)
# Download CMakePP and bring it into scope
# Download CMakePPLang and bring it into scope
include(FetchContent)
FetchContent_Declare(
cmakepp_lang
Expand All @@ -57,5 +57,8 @@ function(get_cmakepp_lang)
endif()
endfunction()

# Call the function we just wrote to get CMaize
# Call the function we just wrote to get CMakePPLang
get_cmakepp_lang()

# Include CMakePPLang
include(cmakepp_lang/cmakepp_lang)

0 comments on commit c58f371

Please sign in to comment.