summaryrefslogtreecommitdiff
path: root/modules/prebuildjava/build.xml
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/prebuildjava/build.xml
downloadscilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.gz
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.bz2
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.zip
CMSCOPE changed
Diffstat (limited to 'modules/prebuildjava/build.xml')
-rwxr-xr-xmodules/prebuildjava/build.xml110
1 files changed, 110 insertions, 0 deletions
diff --git a/modules/prebuildjava/build.xml b/modules/prebuildjava/build.xml
new file mode 100755
index 000000000..6ffa2fca3
--- /dev/null
+++ b/modules/prebuildjava/build.xml
@@ -0,0 +1,110 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2011 - Scilab Enterprises - Sylvestre LEDRU
+ * Copyright (C) 2012 - Scilab Enterprises - Clément DAVID
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
+ *
+ -->
+<project default="all" name="build-all-jar">
+ <!-- Call World
+The main idea is to build at once all the var files
+-->
+ <property name="target-jar" value="jar"/>
+ <property file="../../scilab-lib.properties"/>
+
+ <!-- Order matter : fixed order to avoid dependency handling-->
+ <target name="all" depends="scirenderer, localization, commons, history_manager, jvm, action_binding, graphic_objects, completion, console, renderer, graphic_export, gui, core, helptools, types, scinotes, ui_data, history_browser, javasci, graph, xcos, preferences, external_objects_java" />
+ <target name="clean">
+ <antcall target="all">
+ <param name="target-jar" value="clean"/>
+ </antcall>
+ </target>
+ <target name="test"/>
+
+ <target name="scirenderer">
+ <condition property="thirdparty.dir" value="../../thirdparty">
+ <os family="windows"/>
+ </condition>
+ <ant antfile="../scirenderer/build.xml" target="noversion" inheritRefs="false" inheritAll="false">
+ <property name="thirdparty.dir" value="${thirdparty.dir}"/>
+ <property name="fromScilab" value="yes"/>
+ </ant>
+ </target>
+
+ <target name="action_binding">
+ <ant antfile="../action_binding/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="commons">
+ <ant antfile="../commons/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="completion">
+ <ant antfile="../completion/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="console">
+ <ant antfile="../console/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="core">
+ <ant antfile="../core/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="graph" if="${build_xcos}">
+ <ant antfile="../graph/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="graphic_export">
+ <ant antfile="../graphic_export/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="graphic_objects">
+ <ant antfile="../graphic_objects/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="gui">
+ <ant antfile="../gui/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="helptools">
+ <ant antfile="../helptools/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="history_browser">
+ <ant antfile="../history_browser/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="history_manager">
+ <ant antfile="../history_manager/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="javasci" if="${build_javasci}">
+ <ant antfile="../javasci/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="jvm">
+ <ant antfile="../jvm/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="localization">
+ <ant antfile="../localization/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="output_stream">
+ <ant antfile="../output_stream/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="renderer">
+ <ant antfile="../renderer/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="scinotes">
+ <ant antfile="../scinotes/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="types">
+ <ant antfile="../types/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="ui_data">
+ <ant antfile="../ui_data/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="xcos" if="${build_xcos}" depends="javasci">
+ <ant antfile="../xcos/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="preferences">
+ <ant antfile="../preferences/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+ <target name="external_objects_java">
+ <ant antfile="../external_objects_java/build.xml" target="${target-jar}" inheritRefs="false" inheritAll="false" />
+ </target>
+</project>
+