3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

Fix for example build rules.

This commit is contained in:
Christoph M. Wintersteiger 2015-10-29 13:06:48 +00:00
parent 5b01828df0
commit 5cb4b1d188

View file

@ -1588,7 +1588,7 @@ class CppExampleComponent(ExampleComponent):
# Add include dir components # Add include dir components
out.write(' -I%s' % get_component(API_COMPONENT).to_src_dir) out.write(' -I%s' % get_component(API_COMPONENT).to_src_dir)
out.write(' -I%s' % get_component(CPP_COMPONENT).to_src_dir) out.write(' -I%s' % get_component(CPP_COMPONENT).to_src_dir)
out.write(' %s' % cppfile) out.write(' %s' % os.path.join(self.to_ex_dir, cppfile))
out.write('\n') out.write('\n')
exefile = '%s$(EXE_EXT)' % self.name exefile = '%s$(EXE_EXT)' % self.name