Skip to content

Commit

Permalink
Fix CMakeLists.txt in the codelab.
Browse files Browse the repository at this point in the history
As mentioned in #1303 the parameter order was wrong. It has never caused an issue as we've never run it without overriding the default values.

PiperOrigin-RevId: 695920264
  • Loading branch information
lszekeres authored and copybara-github committed Nov 13, 2024
1 parent 40f8cbd commit 2f9a6aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codelab/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set(CMAKE_CXX_STANDARD 17)

include(FetchContent)

set(FUZZTEST_REPO "FuzzTest repository." CACHE STRING "google/fuzztest")
set(FUZZTEST_REPO_BRANCH "FuzzTest repository branch." CACHE STRING "main")
message("Building fuzztest from ${FUZZTEST_REPO} at branch " ${FUZZTEST_REPO_BRANCH})
set(FUZZTEST_REPO "google/fuzztest" CACHE STRING "FuzzTest repository." )
set(FUZZTEST_REPO_BRANCH "main" CACHE STRING "FuzzTest repository branch.")
message("Building fuzztest from ${FUZZTEST_REPO} at branch ${FUZZTEST_REPO_BRANCH}")

FetchContent_Declare(
fuzztest
Expand Down

0 comments on commit 2f9a6aa

Please sign in to comment.