2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Finish restructuring 'libraries' example

[SVN r26855]
This commit is contained in:
Vladimir Prus
2005-01-26 08:27:29 +00:00
parent 49421231cf
commit 77c52fcf7e
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
project
: usage-requirements <include>include ;
lib bar : bar.cpp ;

View File

@@ -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() {};