Skip to content

Commit

Permalink
Use git tags for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHelmut committed Aug 2, 2022
1 parent 8df4869 commit 504c418
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vendor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ include(FetchContent)
FetchContent_Declare(
fmt
GIT_REPOSITORY "https://github.com/fmtlib/fmt.git"
GIT_TAG b6f4ceaed0a0a24ccf575fab6c56dd50ccf6f1a9 # 8.1.1
GIT_TAG 9.0.0
)
add_subdirectory(fmt)

FetchContent_Declare(
spdlog
GIT_REPOSITORY "https://github.com/gabime/spdlog.git"
GIT_TAG eb3220622e73a4889eee355ffa37972b3cac3df5 # 1.9.2
GIT_TAG v1.10.0
)
add_subdirectory(spdlog)

FetchContent_Declare(
toml11
GIT_REPOSITORY "https://github.com/ToruNiina/toml11.git"
GIT_TAG dcfe39a783a94e8d52c885e5883a6fbb21529019 # 3.7.1
GIT_TAG v3.7.1
)
add_subdirectory(toml11)

Expand All @@ -31,6 +31,6 @@ add_subdirectory(ordered-map)
FetchContent_Declare(
doctest
GIT_REPOSITORY "https://github.com/onqtam/doctest.git"
GIT_TAG 7b9885133108ae301ddd16e2651320f54cafeba7 # 2.4.8
GIT_TAG v2.4.9
)
add_subdirectory(doctest)

0 comments on commit 504c418

Please sign in to comment.