fix macos case-sensitive fs
This commit is contained in:
parent
523f4e9eaa
commit
91f0ab08d4
@ -24,7 +24,7 @@
|
|||||||
#include "tier1/utllinkedlist.h"
|
#include "tier1/utllinkedlist.h"
|
||||||
#include "togl/rendermechanism.h"
|
#include "togl/rendermechanism.h"
|
||||||
#include "appframework/ilaunchermgr.h" // gets pulled in from glmgr.h
|
#include "appframework/ilaunchermgr.h" // gets pulled in from glmgr.h
|
||||||
#include "appframework/iappsystemgroup.h"
|
#include "appframework/IAppSystemGroup.h"
|
||||||
#include "inputsystem/ButtonCode.h"
|
#include "inputsystem/ButtonCode.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ def build(bld):
|
|||||||
|
|
||||||
bld.shlib(
|
bld.shlib(
|
||||||
source = source,
|
source = source,
|
||||||
target = PROJECT_NAME,
|
target = PROJECT_NAME.lower() if bld.env.DEST_OS == 'darwin' else PROJECT_NAME,
|
||||||
name = PROJECT_NAME,
|
name = PROJECT_NAME,
|
||||||
features = 'c cxx',
|
features = 'c cxx',
|
||||||
includes = includes,
|
includes = includes,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user