Skip to content

Commit

Permalink
win32: fix sdl2 install path
Browse files Browse the repository at this point in the history
  • Loading branch information
nillerusr committed May 5, 2023
1 parent 1a58465 commit 3b1b08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def build(bld):
if bld.env.DEST_OS in ['win32', 'android']:
sdl_name = 'SDL2.dll' if bld.env.DEST_OS == 'win32' else 'libSDL2.so'
sdl_path = os.path.join('lib', bld.env.DEST_OS, bld.env.DEST_CPU, sdl_name)
bld.install_files('${PREFIX}/', [sdl_path])
bld.install_files(bld.env.LIBDIR, [sdl_path])

if bld.env.DEST_OS == 'win32':
projects['game'] += ['utils/bzip2']
Expand Down

0 comments on commit 3b1b08f

Please sign in to comment.