File: build-parser.xml

package info (click to toggle)
eclipse-jdt-core 4.29-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 109,364 kB
  • sloc: java: 1,633,914; xml: 5,685; sh: 22; makefile: 6
file content (35 lines) | stat: -rw-r--r-- 1,147 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (c) 2020, 2023 Stephan Hermmann and others.

    This program and the accompanying materials
    are made available under the terms of the Eclipse Public License 2.0
    which accompanies this distribution, and is available at
    https://www.eclipse.org/legal/epl-2.0/

    SPDX-License-Identifier: EPL-2.0
    
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<project name="build-parser" default="build" basedir=".">

	<!-- Usage hints:
		1. In your workspace please create a String Substitution named JIKESPG pointing to the jikespg executable.
		   See  Preferences > Run/Debug > String Substitutions
		2. Invoke the script via build-parser.launch
	 -->
	<target name="build">
 		<javac srcdir="${basedir}" includes="GenerateParserScript.java" destdir="${basedir}"
 					classpath="${basedir}/../bin"
					debuglevel="lines,source"
					source="17"
					target="17">
			<compilerarg/>
		</javac>
		<java classname="GenerateParserScript" classpath=".:${basedir}/../bin">
			<sysproperty key="JIKESPG" value="${JIKESPG}"/>
		</java>
	</target>
</project>