mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
fetch target source code to designated directory
This commit is contained in:
parent
4d4860a8c1
commit
ef0fe29dbd
3 changed files with 3 additions and 11 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,12 +1,3 @@
|
||||||
# Generated directories
|
/.idea/
|
||||||
/build/
|
/build/
|
||||||
/prefix/
|
/prefix/
|
||||||
|
|
||||||
# Targets
|
|
||||||
/gzdoom/
|
|
||||||
/lzdoom/
|
|
||||||
/qzdoom/
|
|
||||||
/raze/
|
|
||||||
|
|
||||||
# IDE
|
|
||||||
/.idea/
|
|
||||||
|
|
2
build.py
2
build.py
|
@ -129,7 +129,7 @@ def create_configuration(args: list):
|
||||||
|
|
||||||
if arguments.target:
|
if arguments.target:
|
||||||
config.target = targets[arguments.target]
|
config.target = targets[arguments.target]
|
||||||
config.source_path = config.root_path + config.target.name
|
config.source_path = config.root_path + 'source' + os.sep + config.target.name
|
||||||
else:
|
else:
|
||||||
assert arguments.source_path
|
assert arguments.source_path
|
||||||
config.source_path = arguments.source_path
|
config.source_path = arguments.source_path
|
||||||
|
|
1
source/.gitignore
vendored
Normal file
1
source/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/*
|
Loading…
Reference in a new issue