Skip to content

Commit

Permalink
fixed distribution packaging mechanism and folder structure
Browse files Browse the repository at this point in the history
fixed examples
added multichannel example
fixed keywords and properties
  • Loading branch information
matsfunk committed Jan 14, 2018
1 parent a7c3c23 commit 13b972f
Show file tree
Hide file tree
Showing 16 changed files with 1,114 additions and 865 deletions.
11 changes: 11 additions & 0 deletions .project
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>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# oocsi-arduino
OOCSI for ESP
15 changes: 15 additions & 0 deletions build/makedistribution.xml
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>
Loading

0 comments on commit 13b972f

Please sign in to comment.