Revision 52

View differences:

1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/w32/.cvsignore
1
*.dll
1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/w32/build.xml
1
<project name="binaries w32" default="main" basedir=".">
2
	<description>
3
		Reorganiza el directorio binaries/w32, para que pueda usarse directamente por gvSIG.
4
	</description>
5

  
6
	<property name="targetDir" location="." />
7

  
8

  
9
	<available property="is3D" file="3D" />
10

  
11
	<target name="main" depends="ecw, gdal, mrsid, crs, potrace, 3D" />
12
	<target name="without-3D" depends="ecw, gdal, mrsid, crs, potrace" />
13

  
14
	<target name="ecw">
15
		<copy todir="${targetDir}">
16
			<fileset dir="raster/ecw" includes="**/**" /> 
17
		</copy>
18
	</target>
19

  
20
	<target name="gdal">
21
		<copy todir="${targetDir}">
22
			<fileset dir="raster/gdal" includes="**/**" />
23
		</copy>
24
	</target>
25

  
26
	<target name="mrsid">
27
		<copy todir="${targetDir}">
28
			<fileset dir="raster/mrsid" includes="**/**" />
29
		</copy>
30
	</target>
31

  
32
	<target name="system">
33
		<copy todir="${targetDir}">
34
			<fileset dir="system" includes="msv*.dll *.manifest" />
35
		</copy>
36
	</target>
37

  
38
	<target name="crs">
39
		<copy todir="${targetDir}">
40
			<fileset dir="crs" includes="**/**" />
41
		</copy>
42
	</target>
43
	
44
	<target name="potrace">
45
		<copy todir="${targetDir}">
46
			<fileset dir="raster/potrace" includes="**/**" />
47
		</copy>
48
	</target>
49
	
50
	<target name="3D" if="is3D">
51
		<copy todir="${targetDir}">
52
			<fileset dir="3D" includes="**/**" />
53
		</copy>
54
	</target>
55

  
56
	<target name="clean3D" if="is3D">
57
		<delete includeemptydirs="true">
58
			<fileset dir="${targetDir}" includes="osgPlugins**/**" />
59
		</delete>
60
	</target>
61

  
62
	<target name="clean" depends="clean3D">
63
		<delete>
64
			<fileset dir="${targetDir}" includes="*.dll *.lib *.jar *.manifest" />
65
		</delete>
66
	</target>
67

  
68
</project>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/w32/raster/gdal/gdal16.dll.manifest
1
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
3
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
4
    <security>
5
      <requestedPrivileges>
6
        <requestedExecutionLevel level='asInvoker' uiAccess='false' />
7
      </requestedPrivileges>
8
    </security>
9
  </trustInfo>
10
  <dependency>
11
    <dependentAssembly>
12
      <assemblyIdentity type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
13
    </dependentAssembly>
14
  </dependency>
15
</assembly>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/w32/system/Microsoft.VC80.CRT.manifest
1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
<!-- Copyright © 1981-2001 Microsoft Corporation -->
3
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
4
    <noInheritable/>
5
    <assemblyIdentity 
6
        type="win32" 
7
        name="Microsoft.VC80.CRT" 
8
        version="8.0.50608.0" 
9
        processorArchitecture="x86" 
10
        publicKeyToken="1fc8b3b9a1e18e3b"
11
    />
12
    <file name="msvcr80.dll"/>
13
    <file name="msvcp80.dll"/>
14
    <file name="msvcm80.dll"/>
15
</assembly>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/w32/3D/Microsoft.VC90.CRT.manifest
1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
<!-- Copyright (c) Microsoft Corporation.  All rights reserved. -->
3
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
4
    <noInheritable/>
5
    <assemblyIdentity
6
        type="win32"
7
        name="Microsoft.VC90.CRT"
8
        version="9.0.21022.8"
9
        processorArchitecture="x86"
10
        publicKeyToken="1fc8b3b9a1e18e3b"
11
    />
12
    <file name="msvcr90.dll" /> <file name="msvcp90.dll" /> <file name="msvcm90.dll" />
13
</assembly>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/binaries/build.xml
1
<project name="binaries_build" default="main" basedir=".">
2
	<dirname file="${ant.file.binaries}" property="ant.file.binaries.dir"/>
3
	<import file="${basedir}/ant/utilities.xml"/>
4
    <description>
5
        Reorganiza el directorio binaries, para que pueda usarse directamente por gvSIG.
6
    </description>
7

  
8
	<target name="batch-build"
9
		depends="main"/>
10

  
11
	<target name="main">
12
		<description>Reorders the directory for the current platform, so that it
13
			can be used by gvSIG.</description>
14
		<echo> Sistema operativo: ${os.name}</echo>
15

  
16
		<condition property="isLinux">
17
			<and>
18
				<os family="unix"/>
19
				<not>
20
					<os family="mac"/>
21
				</not>
22
			</and>
23
		</condition>
24

  
25
		<condition property="isWindows">
26
			<or>
27
				<os family="windows"/>
28
				<os family="win9x"/>
29
				<os name="Windows Vista"/>
30
			</or>
31
		</condition>
32

  
33
		<condition property="isMac">
34
			<os family="mac"/>
35
		</condition>
36

  
37
		<condition property="is_OS_dectected">
38
			<or>
39
				<istrue value="${isLinux}"/>
40
				<istrue value="${isWindows}"/>
41
				<istrue value="${isMac}"/>
42
			</or>
43

  
44
		</condition>
45

  
46

  
47
		<antcall target="linux" />
48
		<antcall target="windows" />
49
		<antcall target="mac" />
50
		<antcall target="no_SO_Detected" />
51

  
52

  
53
	</target>
54

  
55
	<target name="build-all">
56
		<description>Reorders the directory for all the platforms, so that it
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff