waf: fix install

This commit is contained in:
nillerusr
2021-04-06 23:22:52 +03:00
parent f0c72952c8
commit 597f9da3b0
48 changed files with 36 additions and 75 deletions
+1 -1
View File
@@ -559,7 +559,7 @@ def build(bld):
'RT'
]
install_path = bld.env.PREFIX
install_path = bld.env.PREFIX+'/hl2/bin'
bld.shlib(
source = source,
+2 -1
View File
@@ -602,7 +602,7 @@ def build(bld):
libs = ['tier0','particles','dmxloader','tier1','tier2','tier3','mathlib','vstdlib','choreoobjects','steam_api']
install_path = bld.env.PREFIX
install_path = bld.env.PREFIX+'/hl2/bin'
bld.shlib(
source = source,
@@ -611,6 +611,7 @@ def build(bld):
features = 'c cxx',
includes = includes,
defines = defines,
install_path = install_path,
use = libs,
subsystem = bld.env.MSVC_SUBSYSTEM,
idx = bld.get_taskgen_count()