Last change
on this file since 33 was
29,
checked in by landauf, 16 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
1002 bytes
|
Rev | Line | |
---|
[29] | 1 | # (C) Copyright Vladimir Prus, David Abrahams, Michael Stevens, Hartmut Kaiser, |
---|
| 2 | # William E Kempf 2002-2006 |
---|
| 3 | # Use, modification and distribution are subject to the |
---|
| 4 | # Boost Software License, Version 1.0. (See accompanying file |
---|
| 5 | # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
---|
| 6 | |
---|
| 7 | import os ; |
---|
| 8 | |
---|
| 9 | |
---|
| 10 | project boost/thread |
---|
| 11 | : source-location ../src |
---|
| 12 | : requirements <link>shared:<define>BOOST_THREAD_BUILD_DLL=1 <threading>multi |
---|
| 13 | : default-build <threading>multi |
---|
| 14 | ; |
---|
| 15 | |
---|
| 16 | CPP_SOURCES = |
---|
| 17 | barrier |
---|
| 18 | condition |
---|
| 19 | exceptions |
---|
| 20 | mutex |
---|
| 21 | once |
---|
| 22 | recursive_mutex |
---|
| 23 | # read_write_mutex |
---|
| 24 | thread |
---|
| 25 | tss_hooks |
---|
| 26 | tss_dll |
---|
| 27 | tss_pe |
---|
| 28 | tss |
---|
| 29 | xtime |
---|
| 30 | ; |
---|
| 31 | |
---|
| 32 | lib boost_thread |
---|
| 33 | : $(CPP_SOURCES).cpp |
---|
| 34 | : <link>shared:<define>BOOST_THREAD_BUILD_DLL=1 |
---|
| 35 | <link>static:<define>BOOST_THREAD_BUILD_LIB=1 |
---|
| 36 | : # default build |
---|
| 37 | : <link>shared:<define>BOOST_THREAD_BUILD_DLL=1 |
---|
| 38 | <link>static:<define>BOOST_THREAD_BUILD_LIB=1 |
---|
| 39 | ; |
---|
Note: See
TracBrowser
for help on using the repository browser.