Skip to content

Commit

Permalink
#62 set generator std=c++17
Browse files Browse the repository at this point in the history
  • Loading branch information
kwabenantim committed Mar 12, 2024
1 parent 5a1c7df commit d32f6dd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions dynamic/wrapper_generators/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@
castxml_binary = sys.argv[4]
includes = sys.argv[5:]

generator = CppWrapperGenerator(source_root,
includes,
wrapper_root,
castxml_binary,
package_info_path)
generator = CppWrapperGenerator(
source_root,
includes,
wrapper_root,
castxml_binary,
package_info_path,
castxml_cflags="-std=c++17",
)
generator.generate_wrapper()

0 comments on commit d32f6dd

Please sign in to comment.