added sdl developement libraries for extremely lazy compiling... :)

This commit is contained in:
Maximilian Mustermann
2018-01-08 00:31:35 +01:00
parent 1eb3804673
commit b6f410520c
102 changed files with 35364 additions and 3 deletions

View File

@ -0,0 +1,11 @@
# sdl2 cmake project-config input for ./configure scripts
set(prefix "/usr/local/i686-w64-mingw32")
set(exec_prefix "${prefix}")
set(libdir "${exec_prefix}/lib")
set(SDL2_PREFIX "/usr/local/i686-w64-mingw32")
set(SDL2_EXEC_PREFIX "/usr/local/i686-w64-mingw32")
set(SDL2_LIBDIR "${exec_prefix}/lib")
set(SDL2_INCLUDE_DIRS "${prefix}/include/SDL2")
set(SDL2_LIBRARIES "-L${SDL2_LIBDIR} -lmingw32 -lSDL2main -lSDL2 -mwindows")
string(STRIP "${SDL2_LIBRARIES}" SDL2_LIBRARIES)