mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Added a subset of boost to ThirdParty folder. Code extracted from version boost version 1.59.0
20 lines
396 B
Bash
20 lines
396 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright Beman Dawes, 2010
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See www.boost.org/LICENSE_1_0.txt
|
|
echo Copying example programs...
|
|
cp ../tut1.cpp .
|
|
cp ../tut2.cpp .
|
|
cp ../tut3.cpp .
|
|
cp ../tut4.cpp .
|
|
cp ../tut5.cpp .
|
|
cp ../path_info.cpp .
|
|
rm tut1 2>~/junk
|
|
rm tut2 2>~/junk
|
|
rm tut3 2>~/junk
|
|
rm tut4 2>~/junk
|
|
rm tut5 2>~/junk
|
|
rm path_info 2>~/junk
|
|
|