Created
November 21, 2024 10:07
-
-
Save artem78/1520b8c75108c724de8bd70f848c2645 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="My project" xmlns:if="ant:if" xmlns:unless="ant:unless"> | |
<!-- Properties: --> | |
<!-- <property file="build.properties"/> --> | |
<property name="build_dir" location="build"/> | |
<!-- Targets: --> | |
<target name="clean"> | |
<delete dir="${build_dir}"/> | |
</target> | |
<target name="init" depends="clean"> | |
<mkdir dir="${build_dir}"/> | |
</target> | |
<target name="build" depends="clean"> | |
<!-- | |
todo: write me... | |
--> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment