javafx/build.xml
author kaktus@netbeans.org
Tue, 13 Nov 2007 09:24:33 +0000
changeset 2691 d29b2c8cfb5e
parent 2649 10d94c2a5142
child 2834 0c19eee36958
permissions -rw-r--r--
Added import of projectized.xml script.
kaktus@2649
     1
<?xml version="1.0" encoding="UTF-8"?>
kaktus@2649
     2
<!--
kaktus@2649
     3
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
kaktus@2649
     4
kaktus@2649
     5
Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
kaktus@2649
     6
kaktus@2649
     7
kaktus@2649
     8
The contents of this file are subject to the terms of either the GNU
kaktus@2649
     9
General Public License Version 2 only ("GPL") or the Common
kaktus@2649
    10
Development and Distribution License("CDDL") (collectively, the
kaktus@2649
    11
"License"). You may not use this file except in compliance with the
kaktus@2649
    12
License. You can obtain a copy of the License at
kaktus@2649
    13
http://www.netbeans.org/cddl-gplv2.html
kaktus@2649
    14
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
kaktus@2649
    15
specific language governing permissions and limitations under the
kaktus@2649
    16
License.  When distributing the software, include this License Header
kaktus@2649
    17
Notice in each file and include the License file at
kaktus@2649
    18
nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
kaktus@2649
    19
particular file as subject to the "Classpath" exception as provided
kaktus@2649
    20
by Sun in the GPL Version 2 section of the License file that
kaktus@2649
    21
accompanied this code. If applicable, add the following below the
kaktus@2649
    22
License Header, with the fields enclosed by brackets [] replaced by
kaktus@2649
    23
your own identifying information:
kaktus@2649
    24
"Portions Copyrighted [year] [name of copyright owner]"
kaktus@2649
    25
kaktus@2649
    26
Contributor(s):
kaktus@2649
    27
kaktus@2649
    28
The Original Software is NetBeans. The Initial Developer of the Original
kaktus@2649
    29
Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
kaktus@2649
    30
Microsystems, Inc. All Rights Reserved.
kaktus@2649
    31
kaktus@2649
    32
If you wish your version of this file to be governed by only the CDDL
kaktus@2649
    33
or only the GPL Version 2, indicate your decision by adding
kaktus@2649
    34
"[Contributor] elects to include this software in this distribution
kaktus@2649
    35
under the [CDDL or GPL Version 2] license." If you do not indicate a
kaktus@2649
    36
single choice of license, a recipient has the option to distribute
kaktus@2649
    37
your version of this file under either the CDDL, the GPL Version 2 or
kaktus@2649
    38
to extend the choice of license to its licensees as provided above.
kaktus@2649
    39
However, if you add GPL Version 2 code and therefore, elected the GPL
kaktus@2649
    40
Version 2 license, then the option applies only if the new code is
kaktus@2649
    41
made subject to such option by the copyright holder.
kaktus@2649
    42
-->
kaktus@2649
    43
kaktus@2649
    44
<project name="javafx" default="build" basedir=".">
kaktus@2691
    45
kaktus@2691
    46
    <import file="../nbbuild/templates/projectized.xml"/>
kaktus@2691
    47
kaktus@2649
    48
    <property name="nbroot" location=".."/>
kaktus@2649
    49
kaktus@2649
    50
    <target name="build">
kaktus@2649
    51
        <ant dir="${nbroot}/nbbuild" target="init"/>
kaktus@2649
    52
        <subant target="netbeans" inheritAll="false">
kaktus@2649
    53
            <property name="scan.binaries" value="true"/>
kaktus@2649
    54
            
kaktus@2649
    55
            <buildpath location="lib"/>
kaktus@2649
    56
            <buildpath location="userlib"/>
kaktus@2649
    57
            <buildpath location="project"/>
kaktus@2649
    58
            <buildpath location="editor"/>
kaktus@2649
    59
            <buildpath location="samples/2dtutorial"/>
kaktus@2649
    60
            <buildpath location="samples/weather2"/>
kaktus@2649
    61
            <buildpath location="kit"/>
kaktus@2649
    62
        </subant>
kaktus@2649
    63
    </target>
kaktus@2649
    64
    
kaktus@2649
    65
    <target name="clean">
kaktus@2649
    66
        <ant dir="${nbroot}/nbbuild" target="init"/>
kaktus@2649
    67
        <subant target="clean" inheritAll="false">
kaktus@2649
    68
            <property name="scan.binaries" value="true"/>            
kaktus@2649
    69
kaktus@2649
    70
            <buildpath location="lib"/>
kaktus@2649
    71
            <buildpath location="userlib"/>
kaktus@2649
    72
            <buildpath location="project"/>
kaktus@2649
    73
            <buildpath location="editor"/>
kaktus@2649
    74
            <buildpath location="samples/2dtutorial"/>
kaktus@2649
    75
            <buildpath location="samples/weather2"/>
kaktus@2649
    76
            <buildpath location="kit"/>
kaktus@2649
    77
        </subant>
kaktus@2649
    78
    </target>
kaktus@2649
    79
kaktus@2649
    80
    <target name="nbm">
kaktus@2649
    81
        <ant dir="${nbroot}/nbbuild" target="init"/>
kaktus@2649
    82
        <subant target="nbm" inheritAll="false">
kaktus@2649
    83
            <property name="scan.binaries" value="true"/>            
kaktus@2649
    84
kaktus@2649
    85
            <buildpath location="lib"/>
kaktus@2649
    86
            <buildpath location="userlib"/>
kaktus@2649
    87
            <buildpath location="project"/>
kaktus@2649
    88
            <buildpath location="editor"/>
kaktus@2649
    89
            <buildpath location="samples/2dtutorial"/>
kaktus@2649
    90
            <buildpath location="samples/weather2"/>
kaktus@2649
    91
            <buildpath location="kit"/>
kaktus@2649
    92
        </subant>
kaktus@2649
    93
    </target>
kaktus@2649
    94
kaktus@2649
    95
</project>