forked from osfans/trime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buidl(jni): try to improve boost build
- Loading branch information
1 parent
d5556a5
commit 31304c1
Showing
4 changed files
with
57 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
set(BOOST_VER 1.83.0) | ||
|
||
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/boost") | ||
file( | ||
DOWNLOAD "https://github.com/boostorg/boost/releases/download/boost-${BOOST_VER}/boost-${BOOST_VER}.tar.xz" boost-${BOOST_VER}.tar.xz | ||
EXPECTED_HASH SHA256=c5a0688e1f0c05f354bbd0b32244d36085d9ffc9f932e8a18983a9908096f614 | ||
SHOW_PROGRESS | ||
) | ||
file(ARCHIVE_EXTRACT INPUT boost-${BOOST_VER}.tar.xz | ||
DESTINATION ${CMAKE_SOURCE_DIR} | ||
) | ||
file(RENAME | ||
"${CMAKE_SOURCE_DIR}/boost-${BOOST_VER}" | ||
"${CMAKE_SOURCE_DIR}/boost" | ||
) | ||
endif() | ||
|
||
set(BOOST_INCLUDE_LIBRARIES | ||
algorithm | ||
crc | ||
date_time | ||
dll | ||
interprocess | ||
range | ||
regex | ||
scope_exit | ||
signals2 | ||
utility | ||
uuid | ||
# librime-charcode | ||
locale | ||
asio | ||
# librime-lua | ||
optional | ||
) | ||
|
||
add_subdirectory(${CMAKE_SOURCE_DIR}/boost EXCLUDE_FROM_ALL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,22 @@ | ||
set(Boost_FOUND TRUE) | ||
|
||
# libraries that can't compile | ||
set(BOOST_EXCLUDE_LIBRARIES "context;coroutine;fiber" CACHE STRING "" FORCE) | ||
foreach(_lib ${BOOST_INCLUDE_LIBRARIES}) | ||
list(APPEND libraries Boost::${_lib}) | ||
endforeach() | ||
|
||
# we have to specify all libraries and their dependencies manually for Boost_LIBRARIES | ||
# you can dump them from boost/tools/cmake/include/BoostRoot.cmake ${__boost_include_libraries} | ||
set(BOOST_INSTALLED_LIBRARIES | ||
# used by librime directly: | ||
"algorithm" | ||
"any" | ||
"crc" | ||
"date_time" | ||
"dll" | ||
"filesystem" | ||
"format" | ||
"interprocess" | ||
"iostreams" | ||
"lexical_cast" | ||
"optional" | ||
"range" | ||
"regex" | ||
"scope_exit" | ||
"signals2" | ||
"utility" | ||
"uuid" | ||
# for librime-charcode: | ||
"locale" | ||
# dumped from ${__boost_include_libraries}: | ||
"array" | ||
"assert" | ||
"bind" | ||
"concept_check" | ||
"config" | ||
"core" | ||
"coroutine" | ||
"describe" | ||
"exception" | ||
"function" | ||
"iterator" | ||
"mpl" | ||
"static_assert" | ||
"throw_exception" | ||
"tuple" | ||
"type_traits" | ||
"unordered" | ||
"type_index" | ||
"integer" | ||
"io" | ||
"numeric_conversion" | ||
"smart_ptr" | ||
"tokenizer" | ||
"winapi" | ||
"move" | ||
"predef" | ||
"spirit" | ||
"system" | ||
"container_hash" | ||
"detail" | ||
"container" | ||
"intrusive" | ||
"preprocessor" | ||
"random" | ||
"conversion" | ||
"typeof" | ||
"parameter" | ||
"variant" | ||
"serialization" | ||
"tti" | ||
"function_types" | ||
"fusion" | ||
"endian" | ||
"phoenix" | ||
"pool" | ||
"proto" | ||
"thread" | ||
"dynamic_bitset" | ||
"mp11" | ||
"atomic" | ||
"chrono" | ||
"align" | ||
"ratio" | ||
"rational" | ||
) | ||
if(NOT TARGET Boost::boost) | ||
add_library(Boost::boost INTERFACE IMPORTED) | ||
foreach(lib ${libraries}) | ||
get_target_property(_include ${lib} INTERFACE_INCLUDE_DIRECTORIES) | ||
list(APPEND includes ${_include}) | ||
endforeach() | ||
set_target_properties(Boost::boost PROPERTIES | ||
INTERFACE_LINK_LIBRARIES ${libraries} | ||
INTERFACE_INCLUDE_DIRECTORIES ${includes} | ||
) | ||
endif() | ||
|
||
# see boost/tools/boost_install/BoostConfig.cmake | ||
foreach(comp ${BOOST_INSTALLED_LIBRARIES}) | ||
LIST(APPEND Boost_LIBRARIES Boost::${comp}) | ||
endforeach() | ||
set(Boost_LIBRARIES Boost::boost) | ||
|
||
# for librime-charcode | ||
set(Boost_LOCALE_LIBRARIES Boost::locale) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters