mirror of
https://github.com/boostorg/thread.git
synced 2026-01-23 06:02:14 +00:00
24 lines
473 B
Plaintext
24 lines
473 B
Plaintext
# Do some OS-specific setup
|
|
|
|
threadmon = ;
|
|
pthreads-win32 = ;
|
|
|
|
if $(NT)
|
|
{
|
|
if $(PTW32)
|
|
{
|
|
local install-path = $(PTW32[1]) ;
|
|
local lib = $(PTW32[2]) ;
|
|
pthreads-win32 =
|
|
<define>BOOST_HAS_PTHREADS
|
|
<define>PtW32NoCatchWarn
|
|
<include>$(install-path)/pre-built/include
|
|
<library-file>$(install-path)/pre-built/lib/$(lib)
|
|
;
|
|
}
|
|
else
|
|
{
|
|
threadmon = <dll>../build/boost_threadmon ;
|
|
}
|
|
}
|