File: jamfile

package info (click to toggle)
log4cpp 1.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,444 kB
  • sloc: cpp: 6,715; sh: 3,670; ansic: 1,049; makefile: 295
file content (26 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (6)
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
project log4cpp ;

alias sockets : : <toolset>gcc ;
lib sockets : : <name>ws2_32 <toolset>gcc <os>NT ;
lib sockets : : <name>ws2_32.lib <toolset>msvc ;
lib sockets : : <name>ws2_32.lib <toolset>borland ;

lib registry : : <name>Advapi32.lib <toolset>msvc ;
lib registry : : <name>Advapi32.lib <toolset>borland ;
alias registry : : <toolset>gcc ;

lib log4cpp : [ glob src/*.cpp ]
              sockets
              registry
            :
              <include>include
              <variant>debug:<define>_DEBUG
              <toolset>msvc:<define>WIN32
              <toolset>borland:<define>WIN32
              <link>shared:<define>LOG4CPP_HAS_DLL
              <link>shared:<define>LOG4CPP_BUILD_DLL
            :
            :
              <include>include
              <link>shared:<define>LOG4CPP_HAS_DLL
            ;