Merge pull request #5 from rextimmy/epoxy_sdl_fix

Fix for Epoxy to work with SDL and VS 2015
This commit is contained in:
Jeff Hutchinson 2016-05-04 09:47:52 -04:00
commit cc4d35d563

View file

@ -37,3 +37,7 @@ addInclude("${libDir}/epoxy/include")
addInclude("${libDir}/epoxy/src") addInclude("${libDir}/epoxy/src")
finishLibrary() finishLibrary()
# VS 2015 has a problem with sdl and epoxy together and requires optimizations to be disabled
if (MSVC14)
target_compile_options(epoxy PRIVATE "/Od")
endif()