mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 13:21:05 +00:00
aedi: split tools module onto two
tier 1 is for tools needed to build main targets and libraries (tiers 1 and 2) tier 2 is for tools without binaries stored in the repo and their versions can be outdated
This commit is contained in:
parent
18aa12d5b7
commit
58259bae1d
3 changed files with 19 additions and 1 deletions
|
@ -21,7 +21,8 @@ from .library_tier2 import *
|
|||
from .library_tier3 import *
|
||||
from .main import *
|
||||
from .special import *
|
||||
from .tools import *
|
||||
from .tool_tier1 import *
|
||||
from .tool_tier2 import *
|
||||
|
||||
|
||||
def targets():
|
||||
|
|
17
aedi/target/tool_tier2.py
Normal file
17
aedi/target/tool_tier2.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
#
|
||||
# Helper module to build macOS version of various source ports
|
||||
# Copyright (C) 2020-2022 Alexey Lysiuk
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
Loading…
Reference in a new issue