blob: 61f751611883ce37c2e37c4e98443163aedc46b7 (
plain) (
blame)
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
44
45
46
47
48
49
50
51
52
53
|
# Generated by devtools/yamaker.
LIBRARY()
WITHOUT_LICENSE_TEXTS()
VERSION(1.86.0)
ORIGINAL_SOURCE(https://github.com/boostorg/context/archive/boost-1.86.0.tar.gz)
LICENSE(BSL-1.0)
PEERDIR(
contrib/restricted/boost/assert
contrib/restricted/boost/config
contrib/restricted/boost/core
contrib/restricted/boost/mp11
contrib/restricted/boost/pool
contrib/restricted/boost/predef
contrib/restricted/boost/smart_ptr
)
ADDINCL(
GLOBAL contrib/restricted/boost/context/include
)
NO_COMPILER_WARNINGS()
NO_UTIL()
CFLAGS(
-DBOOST_CONTEXT_SOURCE
)
IF (DYNAMIC_BOOST)
CFLAGS(
GLOBAL -DBOOST_CONTEXT_DYN_LINK
)
ENDIF()
SRCDIR(contrib/restricted/boost/context/src)
IF (OS_WINDOWS)
SRCS(
windows/stack_traits.cpp
)
ELSE()
SRCS(
posix/stack_traits.cpp
)
ENDIF()
END()
|