$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Alexander Eisenhuth (newsuser_at_[hidden])
Date: 2006-11-09 11:56:25
Hello,
I'm writing a Boost.python extension, that needs the Boost.thread library
(boost_thread-gcc-mt-1_33_1.lib). I use the Jamfiles from Boost.python example
(works, except of linking), and need to add the thread library. How can I do that?
Jamfiele:
----------------------------------------------
# This is the top of our own project tree
project-root ;
# Include definitions needed for Python modules
import python ;
# ----- getting_started1 -------
# Declare a Python extension called getting_started1
extension getting_started1
: # sources
getting_started1.cpp
# requirements and dependencies for Boost.Python extensions
<template>@boost/libs/python/build/extension
;
-------------------------------------------------
Thanks a lot
Regards Alexander