• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# (C) Copyright 2004: Eric Niebler
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5project
6    : requirements
7        <toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE
8        <toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE
9        <toolset>msvc,<stdlib>stlport:<define>_STLP_EXPOSE_GLOBALS_IMPLEMENTATION
10    ;
11
12exe examples
13    :
14        main.cpp
15    :
16        <include>$(BOOST_ROOT)
17    ;
18
19exe numbers
20    :
21        numbers.cpp
22    :
23        <include>$(BOOST_ROOT)
24    ;
25