Browse Source

engine, game_launch: fix rpath usage

pull/2/head
Alibek Omarov 2 years ago
parent
commit
fc132e87f4
  1. 3
      engine/wscript
  2. 2
      game_launch/wscript

3
engine/wscript

@ -184,5 +184,6 @@ def build(bld): @@ -184,5 +184,6 @@ def build(bld):
includes = includes,
use = libs,
install_path = install_path,
subsystem = bld.env.MSVC_SUBSYSTEM
subsystem = bld.env.MSVC_SUBSYSTEM,
rpath = '$ORIGIN'
)

2
game_launch/wscript

@ -37,7 +37,7 @@ def build(bld): @@ -37,7 +37,7 @@ def build(bld):
features = 'c cxx cxxprogram',
includes = includes,
use = libs,
rpath = '.',
rpath = '$ORIGIN',
install_path = bld.env.BINDIR,
subsystem = bld.env.MSVC_SUBSYSTEM
)

Loading…
Cancel
Save