This commit is contained in:
Er2 2025-11-26 03:42:59 +03:00 committed by GitHub
commit e7ef640438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#include "tier1/utllinkedlist.h"
#include "togl/rendermechanism.h"
#include "appframework/ilaunchermgr.h" // gets pulled in from glmgr.h
#include "appframework/iappsystemgroup.h"
#include "appframework/IAppSystemGroup.h"
#include "inputsystem/ButtonCode.h"

View File

@ -60,7 +60,7 @@ def build(bld):
bld.shlib(
source = source,
target = PROJECT_NAME,
target = PROJECT_NAME.lower() if bld.env.DEST_OS == 'darwin' else PROJECT_NAME,
name = PROJECT_NAME,
features = 'c cxx',
includes = includes,