Started on FileSystem format.

This commit is contained in:
2016-06-26 17:54:12 -05:00
parent 8e4c52d2ab
commit def16ce43f
5 changed files with 81 additions and 4 deletions
+11 -4
View File
@@ -1,8 +1,13 @@
cmake_minimum_required(VERSION 2.8)
add_executable(
Format
format.cpp
FileStoreFormat
filestore_format.cpp
)
add_executable(
FileSystemFormat
filesystem_format.cpp
)
add_executable(
@@ -10,8 +15,10 @@ add_executable(
filestoreio.cpp
)
target_link_libraries(Format OxFS OxStd)
target_link_libraries(FileStoreFormat OxFS OxStd)
target_link_libraries(FileSystemFormat OxFS OxStd)
target_link_libraries(FileStoreIO OxFS OxStd)
add_test("Format" Format)
add_test("FileStoreFormat" FileStoreFormat)
add_test("FileSystemFormat" FileSystemFormat)
add_test("FileStoreIO" FileStoreIO)