wscript(android,windows): add sdl2 to installation path

This commit is contained in:
nillerusr
2023-04-26 22:30:28 +03:00
parent a63138347b
commit 823e437005
2 changed files with 6 additions and 10 deletions

View File

@@ -43,17 +43,8 @@ def build(bld):
if bld.env.DEST_OS == 'win32':
libs += ['USER32']
install_path = bld.env.LIBDIR
# Copy SDL2 dependency
if bld.env.DEST_OS == 'win32':
bld(
rule=(('cp' if 'MSYSTEM' in os.environ or sys.platform != 'win32' else 'copy')+' ${SRC} ${TGT}'),
source='../lib/win32/'+bld.env.DEST_CPU+'/SDL2.dll',
target='SDL2.dll',
install_path=install_path,
)
install_path = bld.env.LIBDIR
bld.shlib(
source = source,