diff --git a/v2/example/libraries/util/foo/Jamfile b/v2/example/libraries/util/foo/Jamfile new file mode 100644 index 000000000..c5a6e91d2 --- /dev/null +++ b/v2/example/libraries/util/foo/Jamfile @@ -0,0 +1,5 @@ + +project + : usage-requirements include ; + +lib bar : bar.cpp ; \ No newline at end of file diff --git a/v2/example/libraries/util/foo/bar.cpp b/v2/example/libraries/util/foo/bar.cpp new file mode 100644 index 000000000..4199dfb26 --- /dev/null +++ b/v2/example/libraries/util/foo/bar.cpp @@ -0,0 +1,13 @@ +// 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 +// + +#ifdef _WIN32 +__declspec(dllexport) +#endif +void foo() {};