add output path for main targets

This commit is contained in:
alexey.lysiuk 2020-12-28 11:10:21 +02:00
parent 733c81ff0e
commit 0bd145ac7c
3 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
/.idea/workspace.xml
/build/
/output/
/prefix/
/sdk/

View file

@ -4,6 +4,7 @@
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/deps" />
<excludeFolder url="file://$MODULE_DIR$/output" />
<excludeFolder url="file://$MODULE_DIR$/prefix" />
<excludeFolder url="file://$MODULE_DIR$/sdk" />
<excludeFolder url="file://$MODULE_DIR$/source" />

View file

@ -1688,6 +1688,7 @@ class Builder(object):
self.root_path = os.path.dirname(os.path.abspath(__file__)) + os.sep
self.deps_path = self.root_path + 'deps' + os.sep
self.output_path = self.root_path + 'output' + os.sep
self.prefix_path = self.root_path + 'prefix' + os.sep
self.bin_path = self.prefix_path + 'bin' + os.sep
self.include_path = self.prefix_path + 'include' + os.sep