@@ -110,7 +110,7 @@ SET ( cppcore_container_src
110110SOURCE_GROUP ( code            FILES  ${cppcore_src}  )
111111SOURCE_GROUP ( code\\common    FILES  ${cppcore_common_src}  )
112112SOURCE_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}  )
114114SOURCE_GROUP ( code\\memory    FILES  ${cppcore_memory_src}  )
115115SOURCE_GROUP ( code\\random    FILES  ${cppcore_random_src}  )
116116
@@ -139,27 +139,33 @@ IF( CPPCORE_BUILD_UNITTESTS )
139139
140140    SET ( cppcore_container_test_src
141141        test /container/TArrayTest.cpp
142+         test /container/TAlgorithmTest.cpp
142143        test /container/THashMapTest.cpp
143144        test /container/TListTest.cpp
144145        test /container/TQueueTest.cpp
145146        test /container/TStaticArrayTest.cpp
146147    )
147148
149+     SET ( cppcore_io_test_src
150+         test /io/FileSystemTest.cpp
151+     )
152+ 
148153    SET ( cppcore_memory_test_src
149154        test /memory/TStackAllocatorTest.cpp
150155        test /memory/TPoolAllocatorTest.cpp
151156        test /memory/TScratchAllocatorTest.cpp
152157    )
153158
154159    SET ( cppcore_random_test_src
155-         test /Random /RandomGeneratorTest.cpp
160+         test /random /RandomGeneratorTest.cpp
156161    )
157162
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}  )
163169
164170    # Prevent overriding the parent project's compiler/linker 
165171    # settings on Windows 
@@ -179,6 +185,7 @@ IF( CPPCORE_BUILD_UNITTESTS )
179185    ADD_EXECUTABLE ( cppcore_unittest
180186        ${cppcore_test_src} 
181187        ${cppcore_common_test_src} 
188+         ${cppcore_io_test_src} 
182189        ${cppcore_memory_test_src} 
183190        ${cppcore_random_test_src} 
184191        ${cppcore_container_test_src} 
0 commit comments