This repository has been archived by the owner on Oct 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
embed haxeui assets into resulting file by default
- Loading branch information
1 parent
cf86645
commit b1c4e31
Showing
5 changed files
with
32 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project> | ||
<assets path="styles" exclude="*.css" rename="styles" if="html5" /> | ||
<assets path="styles" rename="styles" unless="html5" /> | ||
<assets path="img" rename="img" /> | ||
<assets path="fonts" rename="fonts" /> | ||
<haxelib name="openfl" /> | ||
<haxelib name="actuate" /> | ||
<assets path="styles" exclude="*.css" rename="styles" if="html5" embed="true" /> | ||
<assets path="styles" rename="styles" unless="html5" embed="true"/> | ||
<assets path="img" rename="img" embed="true"/> | ||
<assets path="fonts" rename="fonts" embed="true"/> | ||
<classpath name="styles" /> | ||
<classpath name="fonts" /> | ||
</project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project> | ||
<assets path="styles" exclude="*.css" rename="styles" if="html5" /> | ||
<assets path="styles" rename="styles" unless="html5" /> | ||
<assets path="img" rename="img" /> | ||
<assets path="fonts" rename="fonts" /> | ||
<haxelib name="openfl" /> | ||
<haxelib name="actuate" /> | ||
<assets path="styles" exclude="*.css" rename="styles" if="html5" embed="true" /> | ||
<assets path="styles" rename="styles" unless="html5" embed="true"/> | ||
<assets path="img" rename="img" embed="true"/> | ||
<assets path="fonts" rename="fonts" embed="true"/> | ||
<classpath name="styles" /> | ||
<classpath name="fonts" /> | ||
</project> |