diff --git a/v2/example/libraries/Jamroot b/v2/example/libraries/Jamroot new file mode 100644 index 000000000..5e0dc4814 --- /dev/null +++ b/v2/example/libraries/Jamroot @@ -0,0 +1,4 @@ + +use-project /library-example/foo : util/foo ; + +build-project app ; diff --git a/v2/example/libraries/util/foo/include/lib1.h b/v2/example/libraries/util/foo/include/lib1.h new file mode 100644 index 000000000..50f5e19d2 --- /dev/null +++ b/v2/example/libraries/util/foo/include/lib1.h @@ -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 +// + +void foo();