mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
Initial android support
This commit is contained in:
@@ -99,7 +99,7 @@ void CMumbleSystem::LevelInitPostEntity()
|
||||
return;
|
||||
}
|
||||
#elif defined( ANDROID )
|
||||
return; // TODO: implement
|
||||
return; // TODO(JusicP): implement
|
||||
#elif defined( POSIX )
|
||||
char memname[256];
|
||||
V_sprintf_safe( memname, "/MumbleLink.%d", getuid() );
|
||||
|
||||
@@ -559,7 +559,9 @@ def build(bld):
|
||||
'RT'
|
||||
]
|
||||
|
||||
install_path = bld.env.PREFIX+'/hl2/bin'
|
||||
install_path = bld.env.PREFIX
|
||||
if bld.env.DEST_OS != 'android':
|
||||
install_path += '/hl2/bin'
|
||||
|
||||
bld.shlib(
|
||||
source = source,
|
||||
|
||||
@@ -602,7 +602,9 @@ def build(bld):
|
||||
|
||||
libs = ['tier0','particles','dmxloader','tier1','tier2','tier3','mathlib','vstdlib','choreoobjects','steam_api']
|
||||
|
||||
install_path = bld.env.PREFIX+'/hl2/bin'
|
||||
install_path = bld.env.PREFIX
|
||||
if bld.env.DEST_OS != 'android':
|
||||
install_path += '/hl2/bin'
|
||||
|
||||
bld.shlib(
|
||||
source = source,
|
||||
|
||||
Reference in New Issue
Block a user