# Copyright David Abrahams 2006. 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)

# Specify the path to the Boost project.  If you move this project,
# adjust the path to refer to the Boost root directory.
use-project boost 
  : C:/boost ;

# Set up the project-wide requirements that everything uses the
# boost_python library defined in the project whose global ID is
# /boost/python.
project boost-python-dmf-controller-base
  : requirements <library>/boost/python//boost_python
		 <library>/boost/filesystem//boost_filesystem
		 <library>/boost/system//boost_system 
		 <library>/boost/thread//boost_thread
    ;

lib wsock32 : : <name>wsock32 ;

# Make the definition of the python-extension rule available
import python ;

# Declare a Python extension called dmf_control_board_base
python-extension dmf_control_board_base : python_wrappers.cpp SimpleSerial.cpp RemoteObject.cpp logging.cpp dmf_control_board.cpp wsock32 : <link>static ;
