@@ -110,7 +110,7 @@ SET ( cppcore_container_src
110
110
SOURCE_GROUP ( code FILES ${cppcore_src} )
111
111
SOURCE_GROUP ( code\\common FILES ${cppcore_common_src} )
112
112
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} )
114
114
SOURCE_GROUP ( code\\memory FILES ${cppcore_memory_src} )
115
115
SOURCE_GROUP ( code\\random FILES ${cppcore_random_src} )
116
116
@@ -146,7 +146,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
146
146
test /container/TStaticArrayTest.cpp
147
147
)
148
148
149
- SET ( cppcore_io_test_source
149
+ SET ( cppcore_io_test_src
150
150
test /io/FileSystemTest.cpp
151
151
)
152
152
@@ -157,14 +157,15 @@ IF( CPPCORE_BUILD_UNITTESTS )
157
157
)
158
158
159
159
SET ( cppcore_random_test_src
160
- test /Random /RandomGeneratorTest.cpp
160
+ test /random /RandomGeneratorTest.cpp
161
161
)
162
162
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} )
168
169
169
170
# Prevent overriding the parent project's compiler/linker
170
171
# settings on Windows
@@ -184,7 +185,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
184
185
ADD_EXECUTABLE ( cppcore_unittest
185
186
${cppcore_test_src}
186
187
${cppcore_common_test_src}
187
- ${cppcore_io_test_source }
188
+ ${cppcore_io_test_src }
188
189
${cppcore_memory_test_src}
189
190
${cppcore_random_test_src}
190
191
${cppcore_container_test_src}
0 commit comments