-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed distribution packaging mechanism and folder structure
fixed examples added multichannel example fixed keywords and properties
- Loading branch information
Showing
16 changed files
with
1,114 additions
and
865 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>oocsi-esp</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
</buildSpec> | ||
<natures> | ||
</natures> | ||
</projectDescription> |
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 +1 @@ | ||
# oocsi-arduino | ||
OOCSI for ESP |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project default="createDistribution" name="Create Processing plugin distribution bundle"> | ||
<!--ANT 1.7 is required --> | ||
<target name="copySources"> | ||
<copy todir="../dist/oocsi"> | ||
<fileset dir="../src"/> | ||
</copy> | ||
</target> | ||
|
||
<target name="createDistribution" depends="copySources"> | ||
<zip destfile="../dist/oocsi.zip"> | ||
<zipfileset dir="../dist/oocsi" prefix="oocsi"/> | ||
</zip> | ||
</target> | ||
</project> |
Oops, something went wrong.