summaryrefslogtreecommitdiff
path: root/buildscripts/jGrouseDoc/themes/sample/build.xml
blob: 9e029fe55e65efd0bd62172f6315ad695867ce36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0"?>

<project name="sample theme" default="applyJGrouseDoc">

    <target name="applyJGrouseDoc">
        <echo>Applying sample theme</echo>
    	<copy todir="${outputDir}" overwrite="yes">
            <fileset dir="${jGrouseHome}/themes/sample/css" includes="*.css"></fileset>
    	</copy>
    	<copy todir="${outputDir}" overwrite="yes">
            <fileset dir="${jGrouseHome}/themes/sample/img" includes="*"></fileset>
    	</copy>
    </target>
</project>