Added test directory.

This commit is contained in:
2015-09-07 02:46:06 -05:00
parent 2bf8fb22d3
commit 1ed0991f3b
3 changed files with 14 additions and 0 deletions
+5
View File
@@ -17,4 +17,9 @@ add_definitions(
#-Os # GCC size optimization flag
)
enable_testing()
add_subdirectory(src)
add_subdirectory(test)
add_test("MemFs" test/MemFsTest)
+6
View File
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 2.8.8)
add_executable(
MemFsTest
test.cpp
)
+3
View File
@@ -0,0 +1,3 @@
int main() {
return 0;
}