diff --git a/examples/benchmark/CMakeLists.txt b/examples/benchmark/CMakeLists.txt index f09ada5..6e3ff7e 100644 --- a/examples/benchmark/CMakeLists.txt +++ b/examples/benchmark/CMakeLists.txt @@ -6,7 +6,7 @@ project(CPMExampleBenchmark) include(../../cmake/CPM.cmake) -CPMAddPackage("gh:TheLartians/Fibonacci@2.0") +CPMAddPackage("gh:cpm-cmake/testpack-fibonacci@2.0") CPMAddPackage( NAME benchmark diff --git a/examples/catch2/CMakeLists.txt b/examples/catch2/CMakeLists.txt index f94097a..168066c 100644 --- a/examples/catch2/CMakeLists.txt +++ b/examples/catch2/CMakeLists.txt @@ -6,7 +6,7 @@ project(CPMExampleCatch2) include(../../cmake/CPM.cmake) -CPMAddPackage("gh:TheLartians/Fibonacci@2.0") +CPMAddPackage("gh:cpm-cmake/testpack-fibonacci@2.0") CPMAddPackage("gh:catchorg/Catch2@2.13.4") # ---- Create binary ---- diff --git a/examples/doctest/CMakeLists.txt b/examples/doctest/CMakeLists.txt index 44083dc..499d40a 100644 --- a/examples/doctest/CMakeLists.txt +++ b/examples/doctest/CMakeLists.txt @@ -6,7 +6,7 @@ project(CPMExampleDoctest) include(../../cmake/CPM.cmake) -CPMAddPackage("gh:TheLartians/Fibonacci@2.0") +CPMAddPackage("gh:cpm-cmake/testpack-fibonacci@2.0") CPMAddPackage("gh:onqtam/doctest#2.4.5") # ---- Create binary ---- diff --git a/examples/gtest/CMakeLists.txt b/examples/gtest/CMakeLists.txt index 8c0e6f3..8d8bb60 100644 --- a/examples/gtest/CMakeLists.txt +++ b/examples/gtest/CMakeLists.txt @@ -6,7 +6,7 @@ project(CPMExampleGtest) include(../../cmake/CPM.cmake) -CPMAddPackage("gh:TheLartians/Fibonacci@2.0") +CPMAddPackage("gh:cpm-cmake/testpack-fibonacci@2.0") CPMAddPackage( NAME googletest diff --git a/test/unit/remote_dependency/CMakeLists.txt.in b/test/unit/remote_dependency/CMakeLists.txt.in index 98442e6..a4f5338 100644 --- a/test/unit/remote_dependency/CMakeLists.txt.in +++ b/test/unit/remote_dependency/CMakeLists.txt.in @@ -12,7 +12,7 @@ include(@CPM_PATH@/CPM.cmake) CPMAddPackage( NAME fibonacci - GIT_REPOSITORY https://github.com/TheLartians/Fibonacci.git + GIT_REPOSITORY https://github.com/cpm-cmake/testpack-fibonacci.git VERSION @FIBONACCI_VERSION@ @FIBONACCI_PACKAGE_ARGS@ )