Created
August 1, 2014 11:21
-
-
Save gin0606/a2efa6570cd7bce2c11b to your computer and use it in GitHub Desktop.
classファイルcompile終わったらjniのheaderを生成するカスタムルール
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="custom_rules" default="help"> | |
| <target name="-post-compile"> | |
| <javah classpath="./path/to/classes" destdir="./path/to/jni/"> | |
| <class name="me.gin0606.ClassName" /> | |
| </javah> | |
| </target> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment