SuperTuxKart 1.5 upstream source (from official release tarball)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user