Closed phiSgr closed 7 months ago
Allow the use of @includes.txt to filter the symbols
@includes.txt
https://github.com/openjdk/jextract#filtering-symbols
The alternative is to put that file's content into the gradle script.
Something like:
+// Set argfile +definition.argfile.orNull?.let { + arguments += "@$it" +} // Set header file arguments += definition.header.get() // Execute command execute(arguments.toTypedArray())
What should this feature provide?
Allow the use of
@includes.txt
to filter the symbolshttps://github.com/openjdk/jextract#filtering-symbols
Why is this feature needed?
The alternative is to put that file's content into the gradle script.
How can this feature be implemented?
Something like: