Download this file
70 lines (64 with data), 2.5 kB
<?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>
<if test="${cleanup == 'yes'}">
<delete>
<fileset>
<include name="${configuration}_${platform}\**" />
</fileset>
</delete>
</if>
</target>
<target name="build" depends="clean">
<mkdir dir="${configuration}_${platform}" />
<cl outputdir="${configuration}_${platform}">
<arg value="/O2" if="${configuration == 'release'}" />
<arg value="/Od" if="${configuration == 'debug'}" />
<arg value="/EHsc" />
<arg value="/MT" if="${configuration == 'release'}" />
<arg value="/MTd" if="${configuration == 'debug'}" />
<arg value="/Gy" />
<arg value="/W0" />
<arg value="/nologo" />
<arg value="/c" />
<arg value="/Zi" />
<arg value="/MP" />
<arg value="/GL" if="${configuration == 'release'}" />
<arg value="/arch:IA32" if="${configuration == 'release' and platform == 'win32'}" />
<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="WIN32" />
<define name="_WINDOWS" />
<define name="_WIN32" />
<define name="_WIN32_WINNT" value="0x0600" />
<define name="WIN64" if="${platform == 'x64'}" />
<define name="NDEBUG" if="${configuration == 'release'}" />
<define name="_DEBUG" if="${configuration == 'debug'}" />
</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} ${machineoption}'>
<arg value="/LTCG" if="${configuration == 'release'}" />
<sources>
<include name="${configuration}_${platform}\*.obj" />
</sources>
</lib>
</target>
</project>
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.