summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/railsys/program/jamfile.jam
blob: 9d66f2dbb5346dc64590ee32000338275abf9b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ================================================================
#
#  Railsys
#  --------------
#
#  Copyright (c) 2002 Institute of Transport, 
#             Railway Construction and Operation, 
#             University of Hanover, Germany
#  Copyright (c) 2006 Jürgen Hunold
#
#  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)
#
#  02/21/02! Jürgen Hunold
#
#  $Id: jamfile.jam 55188 2009-07-26 20:11:03Z danieljames $
#
# ================================================================

local BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;

use-project /libx : ../libx/src ;

project program
    : requirements 
        <include>$(BOOST_ROOT)
        <threading>multi
        <library>/qt3//qt    
        <hardcode-dll-paths>true
        <stdlib>stlport
        <use>/libx
        <library>/libx//libx
           
 : usage-requirements 
        <include>$(BOOST_ROOT)
        : 
        default-build release
        <threading>multi
        <library>/qt3//qt
        <hardcode-dll-paths>true
        ;

build-project main ;