mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
9dab4509fa
svn path=/trunk/; revision=13064
20 lines
472 B
XML
20 lines
472 B
XML
<?xml version="1.0"?>
|
|
<project name="Compression" default="build">
|
|
|
|
<property name="output.dir" value="..\bin" />
|
|
|
|
<target name="build" description="Build component">
|
|
<mkdir dir="${output.dir}" />
|
|
<csc target="library"
|
|
output="${output.dir}\Compression.dll"
|
|
optimize="true"
|
|
debug="true"
|
|
doc="${output.dir}\Compression.xml"
|
|
warninglevel="0">
|
|
<sources>
|
|
<include name="**/*.cs" />
|
|
</sources>
|
|
</csc>
|
|
</target>
|
|
|
|
</project>
|