Skip to content

Commit

Permalink
Mac OS X|Fixed: Running from a case-sensitive file system
Browse files Browse the repository at this point in the history
Apply the correct letter cases in executable file names and resources.
  • Loading branch information
skyjake committed Apr 26, 2012
1 parent 4578090 commit 7c67510
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 14 deletions.
9 changes: 5 additions & 4 deletions doomsday/engine/engine.pro
Expand Up @@ -3,7 +3,8 @@
# Copyright (c) 2011-2012 Daniel Swanson <danij@dengine.net>

TEMPLATE = app
TARGET = doomsday
win32|macx: TARGET = Doomsday
else: TARGET = doomsday

# Build Configuration --------------------------------------------------------

Expand Down Expand Up @@ -693,9 +694,9 @@ macx {
mac/res/deng.icns

data.path = $$res.path
startupdata.path = $${res.path}/Data
startupfonts.path = $${res.path}/Data/Fonts
startupgfx.path = $${res.path}/Data/Graphics
startupdata.path = $${res.path}/data
startupfonts.path = $${res.path}/data/fonts
startupgfx.path = $${res.path}/data/graphics

QMAKE_BUNDLE_DATA += res data startupfonts startupdata startupgfx

Expand Down
4 changes: 3 additions & 1 deletion doomsday/plugins/dehread/dehread.pro
Expand Up @@ -5,7 +5,9 @@
include(../config_plugin.pri)

TEMPLATE = lib
TARGET = dpdehread

win32|macx: TARGET = dpDehRead
else: TARGET = dpdehread

VERSION = $$DEHREAD_VERSION

Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/directsound/directsound.pro
Expand Up @@ -11,7 +11,7 @@ include(../../dep_eax.pri)
}

TEMPLATE = lib
TARGET = dsdirectsound
TARGET = dsDirectSound

VERSION = $$DIRECTSOUND_VERSION

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/fmod/fmod.pro
Expand Up @@ -5,7 +5,8 @@ include(../config_plugin.pri)
include(../../dep_fmod.pri)

TEMPLATE = lib
TARGET = dsfmod
win32|macx: TARGET = dsFMOD
else: TARGET = dsfmod

VERSION = $$FMOD_VERSION

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/jdoom/jdoom.pro
Expand Up @@ -7,7 +7,8 @@ include(../common/common.pri)
include(../../dep_lzss.pri)

TEMPLATE = lib
TARGET = jdoom
win32|macx: TARGET = jDoom
else: TARGET = jdoom

DEFINES += __JDOOM__

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/jdoom64/jdoom64.pro
Expand Up @@ -7,7 +7,8 @@ include(../common/common.pri)
include(../../dep_lzss.pri)

TEMPLATE = lib
TARGET = jdoom64
win32|macx: TARGET = jDoom64
else: TARGET = jdoom64

DEFINES += __JDOOM64__

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/jheretic/jheretic.pro
Expand Up @@ -7,7 +7,8 @@ include(../common/common.pri)
include(../../dep_lzss.pri)

TEMPLATE = lib
TARGET = jheretic
win32|macx: TARGET = jHeretic
else: TARGET = jheretic

DEFINES += __JHERETIC__

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/jhexen/jhexen.pro
Expand Up @@ -7,7 +7,8 @@ include(../common/common.pri)
include(../../dep_lzss.pri)

TEMPLATE = lib
TARGET = jhexen
win32|macx: TARGET = jHexen
else: TARGET = jhexen

DEFINES += __JHEXEN__

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/openal/openal.pro
Expand Up @@ -6,7 +6,8 @@ include(../config_plugin.pri)
include(../../dep_openal.pri)

TEMPLATE = lib
TARGET = dsopenal
win32|macx: TARGET = dsOpenAL
else: TARGET = dsopenal

VERSION = $$OPENAL_VERSION

Expand Down
3 changes: 2 additions & 1 deletion doomsday/plugins/wadmapconverter/wadmapconverter.pro
Expand Up @@ -5,7 +5,8 @@
include(../config_plugin.pri)

TEMPLATE = lib
TARGET = dpwadmapconverter
win32|macx: TARGET = dpWadMapConverter
else: TARGET = dpwadmapconverter

VERSION = $$WADMAPCONVERTER_VERSION

Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/winmm/winmm.pro
Expand Up @@ -9,7 +9,7 @@ include(../config_plugin.pri)
}

TEMPLATE = lib
TARGET = dswinmm
TARGET = dsWinMM

VERSION = $$WINMM_VERSION

Expand Down

0 comments on commit 7c67510

Please sign in to comment.