Navigation Menu

Skip to content

Commit

Permalink
Rearranging project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
halfninja committed Jul 20, 2011
1 parent 57cfaa8 commit 9c10900
Show file tree
Hide file tree
Showing 20 changed files with 48 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
@@ -1,6 +1,6 @@
[submodule "x264"]
path = jni/x264
path = Project/jni/x264
url = git://git.videolan.org/x264.git
[submodule "ffmpeg"]
path = jni/ffmpeg
path = Project/jni/ffmpeg
url = git://git.videolan.org/ffmpeg.git
4 changes: 4 additions & 0 deletions Project/.gitignore
@@ -0,0 +1,4 @@
bin
gen
libs
obj
10 changes: 10 additions & 0 deletions Project/build.xml
Expand Up @@ -76,4 +76,14 @@
-->
<setup />

<target name="jni" depends="compile">
<exec executable="javah">
<arg value="-classpath" />
<arg value="bin/classes" />
<arg value="-d" />
<arg value="jni/videokit/" />
<arg value="uk.co.halfninja.videokit.Videokit" />
</exec>
</target>

</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Submodule ffmpeg updated from 000000 to f925b2
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions Project/jni/videokit/uk_co_halfninja_videokit_Videokit.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Submodule x264 updated from 000000 to 4c552d
7 changes: 7 additions & 0 deletions Project/src/uk/co/halfninja/videokit/Videokit.java
@@ -0,0 +1,7 @@
package uk.co.halfninja.videokit;

public final class Videokit {

public native void run(String[] args);

}
4 changes: 4 additions & 0 deletions ProjectTest/.gitignore
@@ -0,0 +1,4 @@
bin
gen
libs
obj

0 comments on commit 9c10900

Please sign in to comment.