summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorNaren Manimohan <narendhar15@gmail.com>2019-03-13 12:36:58 (GMT)
committerBrad King <brad.king@kitware.com>2019-03-21 16:57:38 (GMT)
commit2060a1445c6c6350eb886cfe70f956dccaef798e (patch)
tree5dcd88bf8d14463d0eb2950a6820721c433fde8b /Tests
parentddad70c8a48eb90493760b7fa3d3850235ad451a (diff)
downloadCMake-2060a1445c6c6350eb886cfe70f956dccaef798e.zip
CMake-2060a1445c6c6350eb886cfe70f956dccaef798e.tar.gz
CMake-2060a1445c6c6350eb886cfe70f956dccaef798e.tar.bz2
Tests: Fix file name case in GHS object library test
Diffstat (limited to 'Tests')
-rw-r--r--Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt b/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt
index a025814..98668e5c 100644
--- a/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt
+++ b/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(test C)
-add_library(obj1 OBJECT testObj.c testObj.h sub/testObj.c testObj2.c)
+add_library(obj1 OBJECT testOBJ.c testOBJ.h sub/testOBJ.c testOBJ2.c)
add_executable(exe1 exe.c $<TARGET_OBJECTS:obj1>)
if(CMAKE_C_COMPILER_ID STREQUAL "GHS")