# Copyright (C) 2006 Roland Schwarz. # 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) # # This work is a reimplementation along the design and ideas # of William E. Kempf. # # The threading library is available in two versions. # Native to the environment or based ontop pthread. # To select which version to use you need to define # BOOST_THREAD_POSIX when compiling your sources. # If BOOST_THREAD_POSIX is defined this will choose # pthread implementation. # You also need to specify the correct library version by # specifying the the or tags. # @boost/libs/thread/build/boost_thread for static native and # @boost/libs/thread/build/boost_thread_pthread static pthread. # If your compiler does not have the pthread lib in a standard # include path, you need to specify that too, with and # . project-root ; template example : ## sources ## @boost/libs/thread/build/boost_thread #@boost/libs/thread/build/boost_thread_pthread #@boost/libs/thread/build/boost_thread #@boost/libs/thread/build/boost_thread_pthread : ## requirements ## $(BOOST_ROOT) # uncomment below to get pthread on windows #BOOST_THREAD_POSIX #$(PTW32_INCLUDE) #$(PTW32_LIB) : ## default build ## multi ; exe monitor :