File: Jamfile.v2

package info (click to toggle)
ceph 14.2.21-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 744,612 kB
  • sloc: cpp: 4,574,227; ansic: 2,448,295; python: 167,983; asm: 111,868; sh: 85,069; xml: 34,256; java: 31,048; javascript: 22,147; makefile: 19,617; perl: 8,380; cs: 3,000; ada: 1,681; pascal: 1,573; yacc: 478; php: 255; ruby: 94; f90: 55; lisp: 24; awk: 18; sql: 13
file content (21 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

project 
    : requirements <library>../build//boost_program_options
      <hardcode-dll-paths>true
      <link>static
    ;

exe first : first.cpp ;
exe options_description : options_description.cpp ;
exe multiple_sources : multiple_sources.cpp ;
exe custom_syntax : custom_syntax.cpp ;

exe real : real.cpp ;
exe regex : regex.cpp /boost/regex//boost_regex ;

# The following examples use C++ features beyond C++03.
# It would be possible to make compilation of each conditional on specific config check,
# for now just disable the compilation.
#exe config_file_types : config_file_types.cpp ;
#exe env_options : env_options.cpp ;
#exe options_heirarchy : options_heirarchy.cpp ;