From 41db59cde5e80147f13828eb0187ae00b590a093 Mon Sep 17 00:00:00 2001 From: Maurice Laveaux Date: Mon, 26 Jan 2015 17:32:56 +0100 Subject: [PATCH] Fixed cmake warning that targets shouldn't be named test. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94ec330..ad1b8df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,8 +26,8 @@ add_library(tinyobjloader ${tinyobjloader-Source} ) -add_executable(test ${tinyobjloader-Test-Source}) -target_link_libraries(test tinyobjloader) +add_executable(test_loader ${tinyobjloader-Test-Source}) +target_link_libraries(test_loader tinyobjloader) add_executable(obj_sticher ${tinyobjloader-examples-objsticher}) target_link_libraries(obj_sticher tinyobjloader)