Commit c6076066 authored by Steven Dee's avatar Steven Dee

Don't apply cppHeaderExt to JNI base libs

parent c9cebff9
......@@ -46,7 +46,7 @@ class JNIGenerator(spec: Spec) extends Generator(spec) {
}
def find(m: Meta) = m match {
case o: MOpaque =>
jniCpp.add("#include " + q(spec.jniBaseLibIncludePrefix + jniBaseLibFileIdentStyle(o.idlName) + "." + spec.cppHeaderExt))
jniCpp.add("#include " + q(spec.jniBaseLibIncludePrefix + jniBaseLibFileIdentStyle(o.idlName) + ".hpp"))
case d: MDef =>
jniCpp.add("#include " + q(spec.jniIncludePrefix + spec.jniFileIdentStyle(d.name) + "." + spec.cppHeaderExt))
case p: MParam =>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment