Skip to content

Commit

Permalink
Support property settings for Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jul 28, 2016
1 parent eec86ca commit b09dbb8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@
we're executing on. We use this to decide which properties files
to load.
Values: windows, macosx, other.
Values: windows, macosx, linux, other.
-->
<condition property="os.family" value="windows">
<os family="windows"/>
</condition>
<condition property="os.family" value="macosx">
<os family="mac"/>
</condition>
<condition property="os.family" value="linux">
<os family="unix" name="Linux"/>
</condition>
<property name="os.family" value="other"/>

<!--
Expand Down Expand Up @@ -1281,4 +1284,4 @@
</echoproperties>
</target>

</project>
</project>
7 changes: 7 additions & 0 deletions linux.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# linux.properties
#
# Properties for Linux builds. Properties defined here override
# those defined in default.properties, but may be overridden by
# properties defined in a machine-specific build.properties file.
#

0 comments on commit b09dbb8

Please sign in to comment.