diff options
Diffstat (limited to 'src/boost/tools/build/test/test2')
-rw-r--r-- | src/boost/tools/build/test/test2/foo.cpp | 10 | ||||
-rw-r--r-- | src/boost/tools/build/test/test2/jamroot.jam | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/test2/foo.cpp b/src/boost/tools/build/test/test2/foo.cpp new file mode 100644 index 00000000..135fa90f --- /dev/null +++ b/src/boost/tools/build/test/test2/foo.cpp @@ -0,0 +1,10 @@ +// Copyright (c) 2003 Vladimir Prus +// +// 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) +// +// http://www.boost.org +// + +int main() { return 0; } diff --git a/src/boost/tools/build/test/test2/jamroot.jam b/src/boost/tools/build/test/test2/jamroot.jam new file mode 100644 index 00000000..4fb3f288 --- /dev/null +++ b/src/boost/tools/build/test/test2/jamroot.jam @@ -0,0 +1,5 @@ +# Copyright 2002 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +exe foo : foo.cpp ; |