From 0bd145ac7cb39c0d0fc6c6da1d3b72f5a2eadcc6 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 28 Dec 2020 11:10:21 +0200 Subject: [PATCH] add output path for main targets --- .gitignore | 1 + .idea/zdoom-macos-deps.iml | 1 + build.py | 1 + 3 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index defa5c72..62289988 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /.idea/workspace.xml /build/ +/output/ /prefix/ /sdk/ diff --git a/.idea/zdoom-macos-deps.iml b/.idea/zdoom-macos-deps.iml index f9d4243b..8b301caa 100644 --- a/.idea/zdoom-macos-deps.iml +++ b/.idea/zdoom-macos-deps.iml @@ -4,6 +4,7 @@ + diff --git a/build.py b/build.py index 9bae7943..ecbbf6ac 100755 --- a/build.py +++ b/build.py @@ -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