common.sh

来自「Boost provides free peer-reviewed portab」· Shell 代码 · 共 67 行

SH
67
字号
# copyright John Maddock 2003# 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.## locate all the header dependencies:for file in ../../../boost/regex/*.hpp ; do	if [ -f $file ]; then		if [ $file != ../../../boost/regex/concepts.hpp ]; then			if [ $file != ../../../boost/regex/mfc.hpp ]; then				header="$header $file"			fi		fi	fidonefor file in ../../../boost/regex/v3/*.hpp; do	if [ -f $file ]; then		header="$header $file"	fidonefor file in ../../../boost/regex/v3/*.hxx; do	if [ -f $file ]; then		header="$header $file"	fidonefor file in ../../../boost/regex/v4/*.hpp; do	if [ -f $file ]; then		header="$header $file"	fidonefor file in ../../../boost/regex/v4/*.hxx; do	if [ -f $file ]; then		header="$header $file"	fidonefor file in ../../../boost/regex/config/*.hpp; do	if [ -f $file ]; then		header="$header $file"	fidonefor file in ../../../boost/regex/config/*.hxx; do	if [ -f $file ]; then		header="$header $file"	fidone## locate all the source files:for file in ../src/*.cpp; do	if [ -f $file ]; then		src="$src $file"	fidoneboost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')echo Boost version tag = $boost_version

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?