mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
make source directory relative to build directory
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f4544eb060
commit
a64a73255e
|
@ -1004,7 +1004,7 @@ class Component:
|
||||||
out.write('%s =' % include_defs)
|
out.write('%s =' % include_defs)
|
||||||
for dep in self.deps:
|
for dep in self.deps:
|
||||||
out.write(' -I%s' % get_component(dep).to_src_dir)
|
out.write(' -I%s' % get_component(dep).to_src_dir)
|
||||||
out.write(' -I../src')
|
out.write(' -I%s' % os.path.join(REV_BUILD_DIR,"src"))
|
||||||
out.write('\n')
|
out.write('\n')
|
||||||
mk_dir(os.path.join(BUILD_DIR, self.build_dir))
|
mk_dir(os.path.join(BUILD_DIR, self.build_dir))
|
||||||
if VS_PAR and IS_WINDOWS:
|
if VS_PAR and IS_WINDOWS:
|
||||||
|
|
Loading…
Reference in a new issue