aboutsummaryrefslogtreecommitdiff
path: root/lib/CMakeLists.txt
blob: df9b25390ec025af5b17b668bf6b60f7c37fb3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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)

FetchContent_Declare(
  GSL
  GIT_REPOSITORY "https://github.com/Microsoft/GSL"
  GIT_TAG v4.0.0
)

add_subdirectory(GSL)

FetchContent_Declare(
  yacppdic
  GIT_REPOSITORY "https://git.hampusmat.com/yacppdic"
  GIT_TAG v0.1.2
)

add_subdirectory(yacppdic)

if(test)
	FetchContent_Declare(
		gtest
		GIT_REPOSITORY "https://github.com/google/googletest"
		GIT_TAG v1.11.0
	)

	add_subdirectory(gtest)
endif()