Commit fa4a2ed4 authored by j4cbo's avatar j4cbo

Merge pull request #57 from mrdomino/fix-support-lib-hpp-include

Don't apply cppHeaderExt to JNI base libs
parents 0712d38e c6076066
......@@ -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