mirror of
https://github.com/boostorg/static_string.git
synced 2025-06-27 04:41:35 +02:00
Compare commits
12 Commits
boost-1.86
...
develop
Author | SHA1 | Date | |
---|---|---|---|
7a53b7ff20 | |||
24d62635a3 | |||
a8f671ea1e | |||
d677c9436c | |||
a3cc7bcf95 | |||
70578731e7 | |||
3fb22ed769 | |||
32824bfa1d | |||
f15a4d0586 | |||
cd5bc51e9e | |||
77d6a43dce | |||
8f969a62f7 |
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -332,15 +332,9 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
cd ..
|
cd ..
|
||||||
git clone -b "$BOOST_BRANCH" --depth 1 "https://github.com/boostorg/boost.git" "boost-root"
|
git clone -b "$BOOST_BRANCH" --depth 1 "https://github.com/boostorg/boost.git" "boost-root"
|
||||||
|
|
||||||
cd boost-root
|
cd boost-root
|
||||||
# mkdir -p libs/$LIBRARY
|
cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY
|
||||||
# cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY
|
git submodule update --init tools/boostdep
|
||||||
# git submodule update --init tools/boostdep
|
|
||||||
git submodule update --init --recursive
|
|
||||||
mkdir -p libs/$SELF
|
|
||||||
cp -r $GITHUB_WORKSPACE/* libs/$SELF
|
|
||||||
|
|
||||||
DEPINST_ARGS+=("$LIBRARY")
|
DEPINST_ARGS+=("$LIBRARY")
|
||||||
python tools/boostdep/depinst/depinst.py "${DEPINST_ARGS[@]}"
|
python tools/boostdep/depinst/depinst.py "${DEPINST_ARGS[@]}"
|
||||||
if [ -z "${{matrix.cmake_tests}}" ]
|
if [ -z "${{matrix.cmake_tests}}" ]
|
||||||
|
10
Jamfile
10
Jamfile
@ -1,10 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (c) 2019 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
||||||
#
|
|
||||||
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
||||||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
#
|
|
||||||
# Official repository: https://github.com/boostorg/static_string
|
|
||||||
#
|
|
||||||
|
|
||||||
build-project test ;
|
|
28
build.jam
Normal file
28
build.jam
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Copyright René Ferdinand Rivera Morell 2023-2024
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
require-b2 5.2 ;
|
||||||
|
|
||||||
|
constant boost_dependencies :
|
||||||
|
/boost/assert//boost_assert
|
||||||
|
/boost/config//boost_config
|
||||||
|
/boost/container_hash//boost_container_hash
|
||||||
|
/boost/core//boost_core
|
||||||
|
/boost/static_assert//boost_static_assert
|
||||||
|
/boost/throw_exception//boost_throw_exception
|
||||||
|
/boost/utility//boost_utility ;
|
||||||
|
|
||||||
|
project /boost/static_string
|
||||||
|
;
|
||||||
|
|
||||||
|
explicit
|
||||||
|
[ alias boost_static_string : : :
|
||||||
|
: <include>include <library>$(boost_dependencies) ]
|
||||||
|
[ alias all : boost_static_string test ]
|
||||||
|
;
|
||||||
|
|
||||||
|
call-if : boost-library static_string
|
||||||
|
;
|
||||||
|
|
@ -12,7 +12,8 @@ project static_string/doc ;
|
|||||||
import boostbook ;
|
import boostbook ;
|
||||||
import type ;
|
import type ;
|
||||||
import os ;
|
import os ;
|
||||||
import ../../../tools/docca/docca.jam ;
|
import-search /boost/docca ;
|
||||||
|
import docca ;
|
||||||
|
|
||||||
docca.reference reference.qbk
|
docca.reference reference.qbk
|
||||||
:
|
:
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
import testing ;
|
import testing ;
|
||||||
import ../../config/checks/config : requires ;
|
import-search /boost/config/checks ;
|
||||||
|
import config : requires ;
|
||||||
|
|
||||||
local defines =
|
local defines =
|
||||||
[ requires
|
[ requires
|
||||||
@ -20,6 +21,7 @@ local defines =
|
|||||||
]
|
]
|
||||||
;
|
;
|
||||||
|
|
||||||
project : requirements $(defines) ;
|
project : requirements $(defines)
|
||||||
|
<library>/boost/static_string//boost_static_string ;
|
||||||
|
|
||||||
run static_string.cpp ;
|
run static_string.cpp ;
|
||||||
|
Reference in New Issue
Block a user