-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add boost 1.67.0, without any patches
issue #198
- Loading branch information
Scott M Anderson
committed
Jul 20, 2018
1 parent
09f70fe
commit 652c77e
Showing
4 changed files
with
21 additions
and
2 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
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,19 @@ | ||
# boost | ||
set(VER 1.67.0) | ||
string(REPLACE "." "_" VER_ ${VER}) # 1_67_0 | ||
string(REGEX REPLACE "([0-9]+)\\.([0-9]+)(\\.[0-9]+)?" "\\1_\\2" VER2_ ${VER}) # 1_67 | ||
xpProOption(boost${VER2_}) | ||
set(REPO https://github.com/boostorg/boost) | ||
set(PRO_BOOST${VER2_} | ||
NAME boost${VER2_} | ||
WEB "boost" http://www.boost.org/ "Boost website" | ||
LICENSE "open" http://www.boost.org/users/license.html "Boost Software License" | ||
DESC "libraries that give C++ a boost" | ||
REPO "repo" ${REPO} "boost repo on github" | ||
VER ${VER} | ||
GIT_ORIGIN git://github.com/boostorg/boost.git | ||
GIT_TAG boost-${VER} # what to 'git checkout' | ||
DLURL https://dl.bintray.com/boostorg/release/${VER}/source/boost_${VER_}.tar.bz2 | ||
DLMD5 ced776cb19428ab8488774e1415535ab | ||
#SUBPRO boostbuild${VER2_} boostgil${VER2_} boostmpl${VER2_} boostunits${VER2_} | ||
) |
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