aboutsummaryrefslogtreecommitdiff
path: root/lib/CMakeLists.txt
blob: 58dfd292b2d21da8d88451c3730bf904026496b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include(FetchContent)

FetchContent_Declare(
  ctre
  GIT_REPOSITORY "https://github.com/hanickadot/compile-time-regular-expressions"
  GIT_TAG v3.5
)

add_subdirectory(ctre)

FetchContent_Declare(
  fmt
  GIT_REPOSITORY "https://github.com/fmtlib/fmt"
  GIT_TAG 8.1.1
)

add_subdirectory(fmt)