generated from Warchant/cmake-hunter-seed
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathconfig.cmake
41 lines (38 loc) · 1.06 KB
/
config.cmake
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
## Template for add custom hunter config
# Useful when there is a need for a non-default version or arguments of a dependency,
# or when a project not registered in Hunter should be added.
#
# hunter_config(
# package-name
# VERSION 0.0.0-package-version
# CMAKE_ARGS "CMAKE_VARIABLE=value"
# )
#
# hunter_config(
# package-name
# URL https://repo/archive.zip
# SHA1 1234567890abcdef1234567890abcdef12345678
# CMAKE_ARGS "CMAKE_VARIABLE=value"
# )
hunter_config(
soralog
VERSION 0.2.5
URL https://github.com/qdrvm/soralog/archive/refs/tags/v0.2.5.tar.gz
SHA1 1dafdb9e1921b4069f9e1dad0d0acfae24166bd2
KEEP_PACKAGE_SOURCES
)
hunter_config(
ZLIB
VERSION 1.3.0-p0
URL https://github.com/cpp-pm/zlib/archive/refs/tags/v1.3.0-p0.tar.gz
SHA1 311ca59e20cbbfe9d9e05196c12c6ae109093987
)
hunter_config(
qtils
VERSION 0.1.0
URL https://github.com/qdrvm/qtils/archive/refs/tags/v0.1.0.tar.gz
SHA1 acc28902af7dc5d74ac33d486ad2261906716f5e
CMAKE_ARGS
FORMAT_ERROR_WITH_FULLTYPE=ON
KEEP_PACKAGE_SOURCES
)