File: Jamfile

package info (click to toggle)
boost 1.32.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 93,952 kB
  • ctags: 128,458
  • sloc: cpp: 492,477; xml: 52,125; python: 13,519; ansic: 13,013; sh: 1,773; yacc: 853; makefile: 526; perl: 418; lex: 110; csh: 6
file content (42 lines) | stat: -rw-r--r-- 1,535 bytes parent folder | download
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
#  (C) Copyright  2002. Permission to copy, use, modify, sell and
#  distribute this software is granted provided this copyright notice appears
#  in all copies. This software is provided "as is" without express or implied#  warranty, and with no claim as to its suitability for any purpose.### Boost.date_time build ## To run all tests quietly: jam test## Declares the following targets:#   1. libboost_date_time, a library to be linked with all#      Boost.date_time modules#

# declare the location of this subproject relative to the root
subproject libs/date_time/build ;


# Base names of the source files for libboost_date_time
CPP_SOURCES =
    greg_month greg_weekday date_generators ;

dll boost_date_time 
    : ../src/gregorian/$(CPP_SOURCES).cpp    
    : 
      <sysinclude>$(BOOST_ROOT) 
      <runtime-link>dynamic
      <define>BOOST_ALL_DYN_LINK=1
      # the common names rule ensures that the library will
      # be named according to the rules used by the install
      # and auto-link features:
      common-variant-tag 
    : debug release     ;

lib boost_date_time : ../src/gregorian/$(CPP_SOURCES).cpp
    : 
      <sysinclude>$(BOOST_ROOT) 
      <define>BOOST_DATE_TIME_STATIC_LINK
      # the common names rule ensures that the library will
      # be named according to the rules used by the install
      # and auto-link features:
      common-variant-tag 
    : 
      debug 
      release 
      <runtime-link>static 
    ;

install date_time lib
    : <dll>boost_date_time <lib>boost_date_time
    ;