Skip to content

Commit ab71aef

Browse files
committed
fix linker errors for dedicated when building with vpk support
1 parent c165fb2 commit ab71aef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dedicated/wscript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def options(opt):
1313

1414
def configure(conf):
1515
conf.define('LAUNCHERONLY',1)
16-
# conf.define('SUPPORT_PACKED_STORE',1)
16+
conf.define('SUPPORT_PACKED_STORE',1)
1717
conf.define('DEDICATED',1)
1818

1919
def build(bld):
@@ -49,7 +49,7 @@ def build(bld):
4949

5050
defines = []
5151

52-
libs = ['tier0','tier1','tier2','tier3','vstdlib','steam_api','vpklib','appframework','mathlib', 'EDIT']
52+
libs = ['tier0','vpklib','tier1','tier2','tier3','vstdlib','steam_api','appframework','mathlib', 'EDIT']
5353

5454
install_path = bld.env.LIBDIR
5555

filesystem/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def build(bld):
4242

4343
defines = []
4444

45-
libs = ['tier0','tier1','tier2','vstdlib','vpklib']
45+
libs = ['tier0','vpklib','tier1','tier2','vstdlib']
4646

4747
install_path = bld.env.LIBDIR
4848

0 commit comments

Comments
 (0)