-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bea48d8
commit 5ebc3be
Showing
2 changed files
with
76 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[general] | ||
library_name = "libmpss" | ||
output_file_path = "lib/mps/libmps.jl" | ||
prologue_file_path = "res/wrap/libmps_prologue.jl" | ||
#no_audit = true | ||
|
||
printer_blacklist = [ | ||
"mt_macCatalyst", | ||
"mt_ios", | ||
"mt_macos", | ||
"CF.*", | ||
"MTL.*", | ||
"NS.*", | ||
"BOOL" | ||
] | ||
|
||
[codegen] | ||
use_ccall_macro = true | ||
always_NUL_terminated_string = true | ||
|
||
[codegen.macro] | ||
# it's highly recommended to set this entry to "basic". | ||
# if you'd like to skip all of the macros, please set this entry to "disable". | ||
# if you'd like to translate function-like macros to Julia, please set this entry to "aggressive". | ||
macro_mode = "disable" | ||
|
||
[api.MPSSize] | ||
constructor = "MPSSize(w=1.0, h=1.0, d=1.0) = new(w, h, d)" | ||
|
||
[api.MPSRegion] | ||
constructor = "MPSRegion(origin=MPSOrigin(), size=MPSSize()) = new(origin, size)" | ||
|
||
[api.MPSOrigin] | ||
constructor = "MPSOrigin(x=0.0, y=0.0, z=0.0) = new(x, y, z)" | ||
|
||
[api.MPSOffset] | ||
constructor = "MPSOffset(x=0, y=0, z=0) = new(x, y, z)" |
This file contains 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