@@ -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
@@ -139,27 +139,33 @@ IF( CPPCORE_BUILD_UNITTESTS )
139
139
140
140
SET ( cppcore_container_test_src
141
141
test /container/TArrayTest.cpp
142
+ test /container/TAlgorithmTest.cpp
142
143
test /container/THashMapTest.cpp
143
144
test /container/TListTest.cpp
144
145
test /container/TQueueTest.cpp
145
146
test /container/TStaticArrayTest.cpp
146
147
)
147
148
149
+ SET ( cppcore_io_test_src
150
+ test /io/FileSystemTest.cpp
151
+ )
152
+
148
153
SET ( cppcore_memory_test_src
149
154
test /memory/TStackAllocatorTest.cpp
150
155
test /memory/TPoolAllocatorTest.cpp
151
156
test /memory/TScratchAllocatorTest.cpp
152
157
)
153
158
154
159
SET ( cppcore_random_test_src
155
- test /Random /RandomGeneratorTest.cpp
160
+ test /random /RandomGeneratorTest.cpp
156
161
)
157
162
158
- SOURCE_GROUP ( code FILES ${cppcore_test_src} )
159
- SOURCE_GROUP ( code\\common FILES ${cppcore_common_test_src} )
160
- SOURCE_GROUP ( code\\container FILES ${cppcore_container_test_src} )
161
- SOURCE_GROUP ( code\\memory FILES ${cppcore_memory_test_src} )
162
- 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} )
163
169
164
170
# Prevent overriding the parent project's compiler/linker
165
171
# settings on Windows
@@ -179,6 +185,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
179
185
ADD_EXECUTABLE ( cppcore_unittest
180
186
${cppcore_test_src}
181
187
${cppcore_common_test_src}
188
+ ${cppcore_io_test_src}
182
189
${cppcore_memory_test_src}
183
190
${cppcore_random_test_src}
184
191
${cppcore_container_test_src}
0 commit comments