Update mainui. Add possibility to install engine ignoring *nix file hierarchy in wscript. Fix debugging.

This commit is contained in:
Alibek Omarov
2018-05-29 01:02:32 +03:00
parent 236c16e35f
commit 0db8d95bc9
5 changed files with 25 additions and 5 deletions

View File

@@ -68,7 +68,8 @@ def build(bld):
target = 'xash',
features = 'c cprogram',
includes = includes,
use = libs
use = libs,
install_path = bld.env.BINDIR
)
else:
bld.shlib(
@@ -76,5 +77,6 @@ def build(bld):
target = 'xash',
features = 'c',
includes = includes,
use = libs
use = libs,
install_path = bld.env.LIBDIR
)