this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed some prefixes that were missed.

authored by

Jonathan Dearborn and committed by
Alice
b339063a d9770053

+3 -3
+3 -3
CMakeLists.txt
··· 101 101 option(BUILD_VIDEO_TEST "Build SDL_gpu video test program (requires FFMPEG)" OFF) 102 102 option(BUILD_TOOLS "Build SDL_gpu tool programs" OFF) 103 103 option(USE_SDL1 "Use SDL 1.2 headers and library instead of SDL 2" OFF) 104 - option(DISABLE_OPENGL "Disable OpenGL renderers. Overrides specific OpenGL renderer flags." ${SDL_gpu_DEFAULT_DISABLE_OPENGL}) 105 - option(DISABLE_GLES "Disable OpenGLES renderers. Overrides specific GLES renderer flags." ${SDL_gpu_DEFAULT_DISABLE_GLES}) 104 + option(DISABLE_OPENGL "Disable OpenGL renderers. Overrides specific OpenGL renderer flags." ${DEFAULT_DISABLE_OPENGL}) 105 + option(DISABLE_GLES "Disable OpenGLES renderers. Overrides specific GLES renderer flags." ${DEFAULT_DISABLE_GLES}) 106 106 option(DISABLE_OPENGL_1_BASE "Disable OpenGL 1 BASE renderer" OFF) 107 107 option(DISABLE_OPENGL_1 "Disable OpenGL 1.X renderer" OFF) 108 108 option(DISABLE_OPENGL_2 "Disable OpenGL 2.X renderer" OFF) ··· 122 122 123 123 124 124 option(BUILD_SHARED "Build SDL_gpu shared libraries" ${DEFAULT_BUILD_SHARED}) 125 - option(BUILD_STATIC "Build SDL_gpu static libraries" ${SDL_gpu_DEFAULT_BUILD_STATIC}) 125 + option(BUILD_STATIC "Build SDL_gpu static libraries" ${DEFAULT_BUILD_STATIC}) 126 126 127 127 set(SDL_GPU_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BUGFIX}) 128 128