blob: 6e8c9929cd666fe2e268afc3724c0d2ea9f207a6 (
plain)
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
|
<?xml version="1.0"?>
<!--
/*
* $RCSfile$
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
-->
<!-- Ant file for building native utilities files for Windows-i586 -->
<project name="Java 3D" default="compile">
<target name="compile">
<echo message="Executing 32 bit native utilities build [${bldType}]"/>
<!-- Create the build directories sparc -->
<mkdir dir="${build}/${platform}/${bldType}/native/share/objs"/>
<mkdir dir="${build}/${platform}/${bldType}/bin"/>
<property name="javaInclude"
location="${java.home}/../include"/>
<property name="javaWin32Include"
location="${java.home}/../include/win32"/>
<property name="sharesrc"
location="${core_utils_src}/native/share"/>
<!-- Compile the c source files-->
<exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="cl">
<arg line="-I"${javaInclude}" -I"${javaWin32Include}" -I"${javahUtilsTarget}" ${bldFlag} -c "${sharesrc}/J3DTimer.c""/>
</exec>
<!-- Create the library file-->
<exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="link">
<arg line="-nologo -dll -subsystem:windows -pdb:none -machine:I386 -out:j3dutils.dll J3DTimer.obj delayimp.lib -LIBPATH:"${java.home}\..\lib" jawt.lib"/>
</exec>
<!-- Copy the copyright library file -->
<copy file="${build}/${platform}/${bldType}/native/share/objs/j3dutils.dll"
todir="${build}/${platform}/${bldType}/bin"/>
</target>
<target name="dist">
<!-- Create the distribution directory -->
<mkdir dir="${dist}/${platform}/bin"/>
<!-- Copy the library files -->
<copy file="${build}/${platform}/opt/bin/j3dutils.dll"
todir="${dist}/${platform}/bin"/>
</target>
</project>
|