Files
libwiiuse/example/CMakeLists.txt
2010-11-11 12:06:14 -06:00

8 lines
200 B
CMake

include_directories(../src)
add_executable(example example.c)
target_link_libraries(example wiiuse)
if(INSTALL_EXAMPLES)
install(TARGETS example
RUNTIME DESTINATION bin COMPONENT examples)
endif()