commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
<?xml version="1.0"?> <project name="sqlite" default="build" basedir="..\sqlite"> <!-- ====================================================================== --> <!-- Project targets --> <!-- ====================================================================== --> <target name="rebuild" depends="clean,build" /> <target name="clean"> <description> Cleans previous built files. </description> <delete> <fileset> <include name="${configuration}_${platform}\**" /> </fileset> </delete> </target> <target name="build"> <mkdir dir="${configuration}_${platform}" /> <cl outputdir="${configuration}_${platform}"> <arg value="/O2" if="${configuration == 'release'}" /> <arg value="/Oy" if="${configuration == 'release'}" /> <arg value="/Od" if="${configuration != 'release'}" /> <arg value="/FD" /> <arg value="/EHsc" /> <arg value="/MT" if="${(configuration == 'release')}" /> <arg value="/MTd" if="${(configuration != 'release')}" /> <arg value="/Gy" /> <arg value="/W0" /> <arg value="/nologo" /> <arg value="/c" /> <arg value="/Zi" /> <arg value="/MP" /> <arg value="/errorReport:prompt" /> <arg value="/GL" /> <sources> <include name="sqlite3.c" /> </sources> <includedirs> <include name="." /> </includedirs> <defines> <define name="_CRT_NONSTDC_NO_DEPRECATE" /> <define name="_CRT_SECURE_NO_DEPRECATE" /> <define name="NO_TCL" /> <define name="WIN32" /> <define name="_WINDOWS" /> <define name="_WIN32" /> <define name="_WIN32_WINNT" value="0x0501" /> <define name="WIN64" if="${platform == 'x64'}" /> <define name="NDEBUG" if="${configuration == 'release'}"/> <define name="_DEBUG" if="${configuration != 'release'}"/> </defines> </cl> <property name="machineoption" value="/MACHINE:X86" if="${platform == 'win32'}" /> <property name="machineoption" value="/MACHINE:X64" if="${platform == 'x64'}" /> <lib output="${configuration}_${platform}\sqlite.lib" options='/NOLOGO /SUBSYSTEM:WINDOWS ${machineoption}'> <arg value="/LTCG" if="${configuration == 'release'}" /> <sources> <include name="${configuration}_${platform}\*.obj" /> </sources> </lib> </target> </project>