Merge pull request #26 from maskman113/master

Fixed cmake warning that targets shouldn't be named test.
This commit is contained in:
Syoyo Fujita
2015-01-27 11:25:30 +09:00

View File

@@ -26,8 +26,8 @@ add_library(tinyobjloader
${tinyobjloader-Source} ${tinyobjloader-Source}
) )
add_executable(test ${tinyobjloader-Test-Source}) add_executable(test_loader ${tinyobjloader-Test-Source})
target_link_libraries(test tinyobjloader) target_link_libraries(test_loader tinyobjloader)
add_executable(obj_sticher ${tinyobjloader-examples-objsticher}) add_executable(obj_sticher ${tinyobjloader-examples-objsticher})
target_link_libraries(obj_sticher tinyobjloader) target_link_libraries(obj_sticher tinyobjloader)