Skip to content

Commit 247c0d6

Browse files
committed
Fix uppercase references in cmake files.
1 parent 0a39401 commit 247c0d6

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CMakeLists.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ SET ( cppcore_container_src
110110
SOURCE_GROUP( code FILES ${cppcore_src} )
111111
SOURCE_GROUP( code\\common FILES ${cppcore_common_src} )
112112
SOURCE_GROUP( code\\container FILES ${cppcore_container_src} )
113-
SOURCE_GROUP( code\\IO FILES ${cppcore_io_src} )
113+
SOURCE_GROUP( code\\io FILES ${cppcore_io_src} )
114114
SOURCE_GROUP( code\\memory FILES ${cppcore_memory_src} )
115115
SOURCE_GROUP( code\\random FILES ${cppcore_random_src} )
116116

@@ -146,7 +146,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
146146
test/container/TStaticArrayTest.cpp
147147
)
148148

149-
SET( cppcore_io_test_source
149+
SET( cppcore_io_test_src
150150
test/io/FileSystemTest.cpp
151151
)
152152

@@ -157,14 +157,15 @@ IF( CPPCORE_BUILD_UNITTESTS )
157157
)
158158

159159
SET( cppcore_random_test_src
160-
test/Random/RandomGeneratorTest.cpp
160+
test/random/RandomGeneratorTest.cpp
161161
)
162162

163-
SOURCE_GROUP( code FILES ${cppcore_test_src} )
164-
SOURCE_GROUP( code\\common FILES ${cppcore_common_test_src} )
165-
SOURCE_GROUP( code\\container FILES ${cppcore_container_test_src} )
166-
SOURCE_GROUP( code\\memory FILES ${cppcore_memory_test_src} )
167-
SOURCE_GROUP( code\\random FILES ${cppcore_random_test_src} )
163+
SOURCE_GROUP(code FILES ${cppcore_test_src} )
164+
SOURCE_GROUP(code\\common FILES ${cppcore_common_test_src} )
165+
SOURCE_GROUP(code\\io FILES ${cppcore_io_test_src} )
166+
SOURCE_GROUP(code\\container FILES ${cppcore_container_test_src} )
167+
SOURCE_GROUP(code\\memory FILES ${cppcore_memory_test_src} )
168+
SOURCE_GROUP(code\\random FILES ${cppcore_random_test_src} )
168169

169170
# Prevent overriding the parent project's compiler/linker
170171
# settings on Windows
@@ -184,7 +185,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
184185
ADD_EXECUTABLE( cppcore_unittest
185186
${cppcore_test_src}
186187
${cppcore_common_test_src}
187-
${cppcore_io_test_source}
188+
${cppcore_io_test_src}
188189
${cppcore_memory_test_src}
189190
${cppcore_random_test_src}
190191
${cppcore_container_test_src}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)