waf: try relative SDL2 path

This commit is contained in:
mittorn 2019-04-09 09:10:11 +00:00 committed by GitHub
parent 6aa4e10d94
commit 50f0ae5234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -31,14 +31,14 @@ def sdl2_configure_path(conf, path):
conf.env.HAVE_SDL2 = 1
if conf.env.DEST_OS == 'darwin':
conf.env.INCLUDES_SDL2 = [
os.path.abspath(os.path.join(path, 'Headers'))
os.path.join(path, 'Headers')
]
conf.env.FRAMEWORKPATH_SDL2 = [my_dirname(path)]
conf.env.FRAMEWORK_SDL2 = ['SDL2']
else:
conf.env.INCLUDES_SDL2 = [
os.path.abspath(os.path.join(path, 'include')),
os.path.abspath(os.path.join(path, 'include/SDL2'))
os.path.join(path, 'include'),
os.path.join(path, 'include/SDL2')
]
libpath = 'lib'
if conf.env.COMPILER_CC == 'msvc':
@ -46,7 +46,7 @@ def sdl2_configure_path(conf, path):
libpath = 'lib/x64'
else:
libpath = 'lib/' + conf.env.DEST_CPU
conf.env.LIBPATH_SDL2 = [os.path.abspath(os.path.join(path, libpath))]
conf.env.LIBPATH_SDL2 = [os.path.join(path, libpath)]
conf.env.LIB_SDL2 = ['SDL2']
def configure(conf):