Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 457 Bytes

sdl2-config.cmake.in

File metadata and controls

13 lines (12 loc) · 457 Bytes
 
1
2
3
4
# sdl2 cmake project-config input for ./configure scripts
set(prefix "@prefix@")
set(exec_prefix "@exec_prefix@")
Dec 29, 2015
Dec 29, 2015
5
set(libdir "@libdir@")
Feb 14, 2020
Feb 14, 2020
6
7
set(PACKAGE_VERSION "@SDL_VERSION@")
set(SDL2_VERSION "@SDL_VERSION@")
8
9
10
11
12
set(SDL2_PREFIX "@prefix@")
set(SDL2_EXEC_PREFIX "@prefix@")
set(SDL2_LIBDIR "@libdir@")
set(SDL2_INCLUDE_DIRS "@includedir@/SDL2")
set(SDL2_LIBRARIES "-L${SDL2_LIBDIR} @SDL_RLD_FLAGS@ @SDL_LIBS@")
Oct 7, 2016
Oct 7, 2016
13
string(STRIP "${SDL2_LIBRARIES}" SDL2_LIBRARIES)