|
From: <ls...@us...> - 2008-08-11 08:11:01
|
Revision: 4427
http://jnode.svn.sourceforge.net/jnode/?rev=4427&view=rev
Author: lsantha
Date: 2008-08-11 08:10:54 +0000 (Mon, 11 Aug 2008)
Log Message:
-----------
Created sound project.
Added Paths:
-----------
trunk/sound/
trunk/sound/.cvsignore
trunk/sound/.settings/
trunk/sound/build.xml
trunk/sound/descriptors/
trunk/sound/lib/
trunk/sound/sound.iml
trunk/sound/src/
trunk/sound/src/driver/
trunk/sound/src/sound/
trunk/sound/src/test/
Added: trunk/sound/.cvsignore
===================================================================
--- trunk/sound/.cvsignore (rev 0)
+++ trunk/sound/.cvsignore 2008-08-11 08:10:54 UTC (rev 4427)
@@ -0,0 +1 @@
+build
Added: trunk/sound/build.xml
===================================================================
--- trunk/sound/build.xml (rev 0)
+++ trunk/sound/build.xml 2008-08-11 08:10:54 UTC (rev 4427)
@@ -0,0 +1,46 @@
+<project name="JNode-Sound" default="all" basedir=".">
+
+ <typedef file="${basedir}/../all/lib/jnode.xml"/>
+
+ <property name="my-build.dir" value="${basedir}/build"/>
+ <property name="my-classes.dir" value="${my-build.dir}/classes"/>
+ <property name="my-src.dir" value="${basedir}/src"/>
+ <property name="my.jar" value="${jnode-sound.jar}"/>
+
+<!-- Subproject specific classpath -->
+ <path id="my-cp">
+ <pathelement location="${jnode-core.jar}"/>
+ <path refid="cp"/>
+ </path>
+
+<!-- Initialize all subproject directories -->
+ <target name="prepare">
+ <mkdir dir="${my-classes.dir}"/>
+ <jnode.copy-descriptors/>
+ <copy todir="${my-classes.dir}">
+ <fileset dir="${my-src.dir}/sound" excludes="**/*.java,**/package.html"/>
+ </copy>
+ </target>
+
+<!-- Compile all subproject java files -->
+ <target name="compile" depends="prepare">
+ <jnode.compile>
+ <src path="${my-src.dir}/driver"/>
+ <src path="${my-src.dir}/sound"/>
+ <src path="${my-src.dir}/test"/>
+ <classpath refid="my-cp"/>
+ </jnode.compile>
+ </target>
+
+<!-- Assemble the jarfile -->
+ <target name="assemble" depends="compile"/>
+
+<!-- Do it all -->
+ <target name="all" depends="assemble"/>
+
+<!-- Clean everything -->
+ <target name="clean">
+ <jnode.clean/>
+ </target>
+
+</project>
Added: trunk/sound/sound.iml
===================================================================
--- trunk/sound/sound.iml (rev 0)
+++ trunk/sound/sound.iml 2008-08-11 08:10:54 UTC (rev 4427)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module relativePaths="true" type="JAVA_MODULE" version="4">
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
+ <exclude-output />
+ <content url="file://$MODULE_DIR$">
+ <sourceFolder url="file://$MODULE_DIR$/src/driver" isTestSource="false" />
+ <sourceFolder url="file://$MODULE_DIR$/src/sound" isTestSource="false" />
+ <sourceFolder url="file://$MODULE_DIR$/src/test" isTestSource="false" />
+ </content>
+ <orderEntry type="inheritedJdk" />
+ <orderEntry type="sourceFolder" forTests="false" />
+ <orderEntryProperties />
+ </component>
+</module>
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|