forked from ruslo/hunter
-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathhunter_boost_component_b2_args.cmake
141 lines (119 loc) · 4.81 KB
/
hunter_boost_component_b2_args.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Copyright (c) 2015, Aaditya Kalsi
# Copyright (c) 2016, Ruslan Baratov
# All rights reserved.
cmake_minimum_required(VERSION 3.5...3.12)
# for iostreams dependency on ZLIB and BZIP2
include(hunter_add_package)
include("${CMAKE_CURRENT_LIST_DIR}/../Hunter")
function(hunter_boost_component_b2_args compName boostCmakeArgs outList)
hunter_assert_not_empty_string("${BOOST_VERSION}")
string(TOUPPER ${compName} upperCompName)
set(myList "")#empty
string(COMPARE EQUAL "${compName}" "iostreams" is_iostreams)
if(NOT is_iostreams)
foreach(nvPair ${boostCmakeArgs})
string(REPLACE "${upperCompName}_" "" compNvPair ${nvPair})
string(COMPARE EQUAL ${compNvPair} ${nvPair} is_same)
if(NOT is_same)#component build option found
list(APPEND myList "-s" ${compNvPair})
endif()
endforeach()
else()# iostreams args
set(is_nocompress "0")
set(is_nobzip2 "0")
set(is_nozlib "0")
foreach(nvPair ${boostCmakeArgs})
string(REPLACE "${upperCompName}_" "" compNvPair ${nvPair})
string(COMPARE EQUAL ${compNvPair} ${nvPair} is_same)
if(NOT is_same)#iostreams build option found
string(REPLACE "=" ";" optValue ${compNvPair})
list(GET optValue 0 n)
list(GET optValue 1 v)
if(NOT is_nocompress)
string(COMPARE EQUAL ${n} "NO_COMPRESSION" specified)
if(specified AND v)
set(is_nocompress "1")
endif()
endif()
if(NOT is_nobzip2)
string(COMPARE EQUAL ${n} "NO_BZIP2" specified)
if(specified AND v)
set(is_nobzip2 "1")
endif()
endif()
if(NOT is_nozlib)
string(COMPARE EQUAL ${n} "NO_ZLIB" specified)
if(specified AND v)
set(is_nozlib "1")
endif()
endif()
endif()
endforeach()
list(APPEND myList "-s" "NO_COMPRESSION=${is_nocompress}")
if(NOT is_nozlib)
list(APPEND myList "-s" "NO_ZLIB=0")
else()
list(APPEND myList "-s" "NO_ZLIB=1")
endif()
if(NOT is_nobzip2)
list(APPEND myList "-s" "NO_BZIP2=0")
else()
list(APPEND myList "-s" "NO_BZIP2=1")
endif()
if(NOT is_nocompress)
if(NOT is_nozlib)
# download ZLIB and set ZLIB_INCLUDE, ZLIB_LIBPATH
hunter_add_package(ZLIB)
find_package(ZLIB REQUIRED CONFIG)
get_target_property(zlib_include ZLIB::zlib INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(zlib_path ZLIB::zlib IMPORTED_LOCATION_RELEASE)
if(NOT zlib_path)
get_target_property(zlib_configurations ZLIB::zlib IMPORTED_CONFIGURATIONS)
if(NOT zlib_configurations)
hunter_internal_error("No ZLIB configurations")
endif()
list(GET zlib_configurations 0 config)
string(TOUPPER "${config}" config)
get_target_property(zlib_path ZLIB::zlib IMPORTED_LOCATION_${config})
if(NOT zlib_path)
hunter_internal_error("No ZLIB library")
endif()
endif()
get_filename_component(zlib_dir ${zlib_path} DIRECTORY)
get_filename_component(zlib_name ${zlib_path} NAME_WE)
if(NOT WIN32 OR MINGW)
string(REGEX REPLACE "^lib" "" zlib_name ${zlib_name})
endif()
list(APPEND myList "-s" "ZLIB_INCLUDE=${zlib_include}" "-s" "ZLIB_LIBPATH=${zlib_dir}" "-s" "ZLIB_BINARY=${zlib_name}")
set(BOOST_CONFIG_LINK_ZLIB 1 PARENT_SCOPE)
endif()
if(NOT is_nobzip2)
# download BZIP2 and set BZIP2_INCLUDE, BZIP2_LIBPATH
hunter_add_package(BZip2)
find_package(BZip2 REQUIRED CONFIG)
get_target_property(bzip2_include BZip2::bz2 INTERFACE_INCLUDE_DIRECTORIES)
get_target_property(bzip2_path BZip2::bz2 IMPORTED_LOCATION_RELEASE)
if(NOT bzip2_path)
get_target_property(bzip2_configurations BZip2::bz2 IMPORTED_CONFIGURATIONS)
if(NOT bzip2_configurations)
hunter_internal_error("No BZip2 configurations")
endif()
list(GET bzip2_configurations 0 config)
string(TOUPPER "${config}" config)
get_target_property(bzip2_path BZip2::bz2 IMPORTED_LOCATION_${config})
if(NOT bzip2_path)
hunter_internal_error("No BZip2 library")
endif()
endif()
get_filename_component(bzip2_dir ${bzip2_path} DIRECTORY)
get_filename_component(bzip2_name ${bzip2_path} NAME_WE)
if(NOT WIN32 OR MINGW)
string(REGEX REPLACE "^lib" "" bzip2_name ${bzip2_name})
endif()
list(APPEND myList "-s" "BZIP2_INCLUDE=${bzip2_include}" "-s" "BZIP2_LIBPATH=${bzip2_dir}" "-s" "BZIP2_BINARY=${bzip2_name}")
set(BOOST_CONFIG_LINK_BZIP2 1 PARENT_SCOPE)
endif()
endif(NOT is_nocompress)
endif(NOT is_iostreams)
set("${outList}" ${myList} PARENT_SCOPE)
endfunction(hunter_boost_component_b2_args)