Skip to content

Commit

Permalink
update windows lib placement
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyDOGE committed Jul 28, 2022
1 parent 991585b commit 5206f38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inputsystem/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def build(bld):
if bld.env.DEST_OS == 'win32':
bld(
rule='cp ${SRC} ${TGT}',
source='../lib/win32/public/'+bld.env.DEST_CPU+'/SDL2.dll',
source='../lib/win32/'+bld.env.DEST_CPU+'/SDL2.dll',
target='SDL2.dll',
install_path=install_path,
)
Expand Down
3 changes: 1 addition & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,7 @@ def configure(conf):
]

linkflags += [
'/LIBPATH:'+os.path.abspath('.')+'/lib/win32/public/'+conf.env.DEST_CPU+'/',
'/LIBPATH:'+os.path.abspath('.')+'/lib/win32/common/'+conf.env.DEST_CPU+'/2015/release',
'/LIBPATH:'+os.path.abspath('.')+'/lib/win32/'+conf.env.DEST_CPU+'/',
'/LIBPATH:'+os.path.abspath('.')+'/dx9sdk/lib/'+conf.env.DEST_CPU+'/'
]

Expand Down

0 comments on commit 5206f38

Please sign in to comment.