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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<project version="2.0">
<syspaths>
<path>.</path>
<path>../boost/include</path>
<path>/usr/include</path>
</syspaths>
<userpaths>
<path>.</path>
<path>src</path>
</userpaths>
<libpaths>
<path>../boost/lib</path>
<path>/usr/lib</path>
</libpaths>
<files>
<group name="soap">
<file>exception.cpp</file>
<file>soap-envelope.cpp</file>
<file>soap-server.cpp</file>
<group name="http">
<file>connection.cpp</file>
<file>http-server.cpp</file>
<file>preforked-http-server.cpp</file>
<file>reply.cpp</file>
<file>request_parser.cpp</file>
<file>webapp.cpp</file>
<file>webapp-el.cpp</file>
</group>
<group name="xml">
<file>document.cpp</file>
<file>node.cpp</file>
<file>doctype.cpp</file>
<file>unicode_support.cpp</file>
<file>writer.cpp</file>
<file>xpath.cpp</file>
<file>parser.cpp</file>
</group>
</group>
<group name="Sources">
<file>zeep-test.cpp</file>
</group>
<group name="Libraries">
<link>boost_thread</link>
<link>boost_program_options</link>
<link>boost_filesystem</link>
<link>boost_regex</link>
<link>boost_math_c99</link>
<link>boost_system</link>
</group>
</files>
<targets>
<target kind="Executable">
<name>zeep-test Debug</name>
<linkTarget>zeep-test</linkTarget>
<compiler>/usr/bin/g++-4.5</compiler>
<defines>
<define>DEBUG</define>
<define>BOOST_FILESYSTEM_VERSION=2</define>
</defines>
<cflags>
<cflag>-O0</cflag>
<cflag>-pthread</cflag>
<cflag>-gdwarf-2</cflag>
<cflag>-std=c++0x</cflag>
</cflags>
<ldflags>
<ldflag>-static-libgcc</ldflag>
<ldflag>-pthread</ldflag>
</ldflags>
<warnings>
<warning>all</warning>
<warning>no-deprecated</warning>
</warnings>
</target>
<target kind="Executable">
<name>zeep-test Release</name>
<linkTarget>zeep-test</linkTarget>
<compiler>/usr/bin/c++</compiler>
<defines>
<define>NDEBUG</define>
</defines>
<cflags>
<cflag>-gdwarf-2</cflag>
<cflag>-O3</cflag>
</cflags>
<ldflags>
<ldflag>-static-libgcc</ldflag>
<ldflag>-pthread</ldflag>
</ldflags>
<warnings>
<warning>all</warning>
<warning>no-deprecated</warning>
</warnings>
</target>
</targets>
</project>
|