client: fix VGUI include and lib path detection
This commit is contained in:
parent
70d346f7cb
commit
5bb2221c62
@ -91,7 +91,7 @@ struct HUDLIST {
|
||||
//
|
||||
//-----------------------------------------------------
|
||||
//
|
||||
#include "..\game_shared\voice_status.h"
|
||||
#include "voice_status.h"
|
||||
#include "hud_spectator.h"
|
||||
|
||||
|
||||
|
@ -9,10 +9,9 @@ def options(opt):
|
||||
opt.load('vgui')
|
||||
|
||||
def configure(conf):
|
||||
if conf.env.USE_VGUI:
|
||||
conf.load('vgui')
|
||||
if not conf.check_vgui():
|
||||
conf.fatal('VGUI was enabled but VGUI cannot be used')
|
||||
conf.load('vgui')
|
||||
if not conf.check_vgui():
|
||||
conf.fatal('VGUI was enabled but VGUI cannot be used')
|
||||
|
||||
def build(bld):
|
||||
libs = ['VGUI']
|
||||
|
@ -13,7 +13,7 @@ int main() { return 0; }'''
|
||||
def options(opt):
|
||||
grp = opt.add_option_group('VGUI options')
|
||||
|
||||
vgui_dev_path = os.path.join(opt.path.path_from(opt.path), 'vgui_support', 'vgui-dev')
|
||||
vgui_dev_path = os.path.join(opt.path.path_from(opt.path), 'utils', 'vgui')
|
||||
|
||||
grp.add_option('--vgui', action = 'store', dest = 'VGUI_DEV', default=vgui_dev_path,
|
||||
help = 'path to vgui-dev repo [default: %default]')
|
||||
|
Loading…
Reference in New Issue
Block a user