mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
add output path for main targets
This commit is contained in:
parent
733c81ff0e
commit
0bd145ac7c
3 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
/.idea/workspace.xml
|
/.idea/workspace.xml
|
||||||
/build/
|
/build/
|
||||||
|
/output/
|
||||||
/prefix/
|
/prefix/
|
||||||
/sdk/
|
/sdk/
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<excludeFolder url="file://$MODULE_DIR$/build" />
|
<excludeFolder url="file://$MODULE_DIR$/build" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/deps" />
|
<excludeFolder url="file://$MODULE_DIR$/deps" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/output" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/prefix" />
|
<excludeFolder url="file://$MODULE_DIR$/prefix" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/sdk" />
|
<excludeFolder url="file://$MODULE_DIR$/sdk" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/source" />
|
<excludeFolder url="file://$MODULE_DIR$/source" />
|
||||||
|
|
1
build.py
1
build.py
|
@ -1688,6 +1688,7 @@ class Builder(object):
|
||||||
|
|
||||||
self.root_path = os.path.dirname(os.path.abspath(__file__)) + os.sep
|
self.root_path = os.path.dirname(os.path.abspath(__file__)) + os.sep
|
||||||
self.deps_path = self.root_path + 'deps' + 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.prefix_path = self.root_path + 'prefix' + os.sep
|
||||||
self.bin_path = self.prefix_path + 'bin' + os.sep
|
self.bin_path = self.prefix_path + 'bin' + os.sep
|
||||||
self.include_path = self.prefix_path + 'include' + os.sep
|
self.include_path = self.prefix_path + 'include' + os.sep
|
||||||
|
|
Loading…
Reference in a new issue