Start work on marshalling in Python bindings

This commit is contained in:
John J. Camilleri
2021-09-03 14:14:47 +02:00
parent 2daf9e2e19
commit 3ecb937753
7 changed files with 1362 additions and 1206 deletions

View File

@@ -9,8 +9,8 @@ if libraries==['']:
libraries=[]
pgf_module = Extension('pgf',
sources = ['pypgf.c'],
extra_compile_args = ['-std=c99'],
sources = ['pypgf.c', 'marshaller.c', 'expr.c'],
extra_compile_args = ['-std=c99', '-Werror', '-Wno-comment'],
include_dirs = includes,
library_dirs = libraries,
libraries = ['pgf'])