-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.xml
31 lines (24 loc) · 868 Bytes
/
build.xml
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
<?xml version="1.0"?>
<project name="Lyla" default="version">
<property file="build.properties" />
<loadfile property="version" file="VERSION"/>
<target name="version">
<echo msg="Project ${phing.project.name} v.${version}"/>
</target>
<target name="clean">
<delete dir="${project.basepath}"/>
</target>
<target name="mkdir">
<mkdir dir="${project.basepath}/application/library"/>
<mkdir dir="${project.basepath}/application/resources"/>
<mkdir dir="${project.basepath}/application/settings"/>
<mkdir dir="${project.basepath}/bin"/>
<mkdir dir="${project.basepath}/tests"/>
<mkdir dir="${project.basepath}/web/js"/>
<mkdir dir="${project.basepath}/web/css"/>
<mkdir dir="${project.basepath}/web/img"/>
</target>
<target name="deps">
<composer command="install"/>
</target>
</project>