Skip to content

Commit

Permalink
fix SoCMake examples git remote repository (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Risto97 authored Sep 12, 2024
1 parent 21d4ab6 commit 24ae41e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions examples/cpm/deps/deps.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.38.1) # Define CPM version to be downloaded
set(CPM_DOWNLOAD_VERSION 0.40.2) # Define CPM version to be downloaded
include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) # Include the CPM.cmake downloader

CPMAddPackage( # Add SoCMake as a package
NAME SoCMake
GIT_TAG master # You can define GIT_TAG or VERSION for versioning
GIT_REPOSITORY "ssh://[email protected]:7999/socrates/SoCMake.git" # GIT_REPOSITORY or URL
GIT_TAG master # You can define GIT_TAG or VERSION for versioning
GIT_REPOSITORY "https://github.com/HEP-SoC/SoCMake.git" # GIT_REPOSITORY or URL
)
2 changes: 1 addition & 1 deletion examples/fetchcontent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include(FetchContent)

FetchContent_Declare(
SoCMake
GIT_REPOSITORY ssh://[email protected]:7999/socrates/SoCMake.git
GIT_REPOSITORY https://github.com/HEP-SoC/SoCMake.git
GIT_TAG master
)

Expand Down
4 changes: 2 additions & 2 deletions examples/linking_ips/deps/deps.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.38.1) # Define CPM version to be downloaded
set(CPM_DOWNLOAD_VERSION 0.40.2) # Define CPM version to be downloaded
include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) # Include the CPM.cmake downloader

CPMAddPackage( # Add SoCMake as a package
NAME SoCMake
GIT_TAG master # You can define GIT_TAG or VERSION for versioning
GIT_REPOSITORY "ssh://[email protected]:7999/socrates/SoCMake.git" # GIT_REPOSITORY or URL
GIT_REPOSITORY "https://github.com/HEP-SoC/SoCMake.git" # GIT_REPOSITORY or URL
)
4 changes: 2 additions & 2 deletions examples/sim_example/deps/deps.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.38.1) # Define CPM version to be downloaded
set(CPM_DOWNLOAD_VERSION 0.40.2) # Define CPM version to be downloaded
include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) # Include the CPM.cmake downloader

CPMAddPackage( # Add SoCMake as a package
NAME SoCMake
GIT_TAG master # You can define GIT_TAG or VERSION for versioning
GIT_REPOSITORY "ssh://[email protected]:7999/socrates/SoCMake.git" # GIT_REPOSITORY or URL
GIT_REPOSITORY "https://github.com/HEP-SoC/SoCMake.git" # GIT_REPOSITORY or URL
)
4 changes: 2 additions & 2 deletions examples/vcs/deps/deps.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.38.1)
set(CPM_DOWNLOAD_VERSION 0.40.2)
include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake)

CPMAddPackage(
NAME SoCMake
GIT_TAG master
GIT_REPOSITORY "ssh://[email protected]:7999/socmake/SoCMake.git"
GIT_REPOSITORY "https://github.com/HEP-SoC/SoCMake.git"
)
4 changes: 2 additions & 2 deletions examples/verilator/deps/deps.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set(CPM_DOWNLOAD_VERSION 0.38.1) # Define CPM version to be downloaded
set(CPM_DOWNLOAD_VERSION 0.40.2) # Define CPM version to be downloaded
include(${CMAKE_CURRENT_LIST_DIR}/CPM.cmake) # Include the CPM.cmake downloader

CPMAddPackage( # Add SoCMake as a package
NAME SoCMake
GIT_TAG master # You can define GIT_TAG or VERSION for versioning
GIT_REPOSITORY "ssh://[email protected]:7999/socrates/SoCMake.git" # GIT_REPOSITORY or URL
GIT_REPOSITORY "https://github.com/HEP-SoC/SoCMake.git" # GIT_REPOSITORY or URL
)

0 comments on commit 24ae41e

Please sign in to comment.