stk-code_catmod/lib/wiiuse/example-sdl/CMakeLists.txt
QwertyChouskie 27fce1d1a4 Update Wiiuse to 0.15.5
Updates Wiiuse, while keeping (and labeling) STK-specific patches.
2019-12-27 18:13:32 -08:00

21 lines
541 B
CMake

find_package(SDL)
find_package(OpenGL)
find_package(GLUT)
if(SDL_FOUND AND OPENGL_FOUND AND GLUT_FOUND)
include_directories(../src ${SDL_INCLUDE_DIR} ${OPENGL_INCLUDE_DIR} ${GLUT_INCLUDE_DIRS})
if(WIN32)
add_executable(wiiuseexample-sdl WIN32 sdl.c)
else()
add_executable(wiiuseexample-sdl sdl.c)
endif()
target_link_libraries(wiiuseexample-sdl wiiuse ${SDL_LIBRARY} ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES})
if(INSTALL_EXAMPLES)
install(TARGETS wiiuseexample-sdl
RUNTIME DESTINATION bin COMPONENT examples)
endif()
endif()