Change the target names of the binaries

This commit is contained in:
Ryan Pavlik
2010-11-11 13:20:00 -06:00
parent fa5763db04
commit 7c06e81243
2 changed files with 6 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
include_directories(../src)
add_executable(example example.c)
target_link_libraries(example wiiuse)
add_executable(wiiuseexample example.c)
target_link_libraries(wiiuseexample wiiuse)
if(INSTALL_EXAMPLES)
install(TARGETS example
install(TARGETS wiiuseexample
RUNTIME DESTINATION bin COMPONENT examples)
endif()