CMakeLists.txt

1
2
3
4
5
6
7
if(TARGET planet-examples)
    add_executable(mouse-example-planet-sdl mouse.cpp)
    target_link_libraries(mouse-example-planet-sdl planet-sdl)
    install(TARGETS mouse-example-planet-sdl
        EXPORT mouse-example-planet-sdl
        RUNTIME DESTINATION bin)
endif()