this repo has no description
0
fork

Configure Feed

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

Changed linking for demos, tests, and tools because it wasn't finding SDL_gpu.

+3 -3
+1 -1
demos/CMakeLists.txt
··· 1 1 include_directories (${SDL_gpu_SOURCE_DIR}) 2 2 link_directories (${SDL_gpu_SOURCE_DIR}/src) 3 3 4 - set(DEMO_LIBS ${SDL_gpu_LIBRARY} ${SDL_gpu_GL_LIBRARIES}) 4 + set(DEMO_LIBS SDL_gpu ${SDL_gpu_GL_LIBRARIES}) 5 5 6 6 if(MINGW) 7 7 set(DEMO_LIBS ${DEMO_LIBS} mingw32)
+1 -1
tests/CMakeLists.txt
··· 2 2 include_directories (${SDL_gpu_SOURCE_DIR}/common) 3 3 link_directories (${SDL_gpu_SOURCE_DIR}/src) 4 4 5 - set(TEST_LIBS test-common ${SDL_gpu_LIBRARY} ${SDL_gpu_GL_LIBRARIES}) 5 + set(TEST_LIBS test-common SDL_gpu ${SDL_gpu_GL_LIBRARIES}) 6 6 7 7 if(MINGW) 8 8 set(TEST_LIBS ${TEST_LIBS} mingw32)
+1 -1
tools/CMakeLists.txt
··· 2 2 include_directories (${SDL_gpu_SOURCE_DIR}/common) 3 3 link_directories (${SDL_gpu_SOURCE_DIR}/src) 4 4 5 - set(TOOL_LIBS test-common ${SDL_gpu_LIBRARY}) 5 + set(TOOL_LIBS test-common SDL_gpu) 6 6 7 7 add_executable(compare-images compare-images-src/main.c) 8 8 target_link_libraries (compare-images ${TOOL_LIBS})