mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 04:31:09 +00:00
Switch App bundle build on by default and remove unneccesary statement
This commit is contained in:
parent
dbdfaac827
commit
2246ba80a3
1 changed files with 2 additions and 3 deletions
5
Makefile
5
Makefile
|
@ -72,7 +72,7 @@ OSX_ARCH := -arch i386 -arch x86_64
|
|||
# will be set to expect the linked Frameworks in *.app/Contents/
|
||||
# Frameworks and the game-data will be expected in # *.app/
|
||||
# Contents/Resources
|
||||
OSX_APP := no
|
||||
OSX_APP := yes
|
||||
|
||||
# ====================================================== #
|
||||
# !!! DO NOT ALTER ANYTHING BELOW THIS LINE !!! #
|
||||
|
@ -308,7 +308,7 @@ ifeq ($(OSTYPE), Darwin)
|
|||
build/client/%.o : %.m
|
||||
@echo "===> CC $<"
|
||||
${Q}mkdir -p $(@D)
|
||||
${Q}$(CC) $(OSX_ARCH) $(USE_APP_RESOURCES) -x objective-c -c $< -o $@
|
||||
${Q}$(CC) $(OSX_ARCH) -x objective-c -c $< -o $@
|
||||
endif
|
||||
|
||||
ifeq ($(WITH_CDA),yes)
|
||||
|
@ -343,7 +343,6 @@ endif
|
|||
|
||||
ifeq ($(OSTYPE), Darwin)
|
||||
ifeq ($(OSX_APP), yes)
|
||||
release/quake2 : USE_APP_RESOURCES = -DUSE_APP_RESOURCES
|
||||
release/quake2 : LDFLAGS += -Xlinker -rpath -Xlinker @loader_path/../Frameworks
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue