diff --git a/CMakeLists.txt b/CMakeLists.txt index 9904b0932..981e0acfc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,4 +25,4 @@ add_subdirectory(src) add_subdirectory(test) add_test("Format" test/Format) -add_test("FsStore" test/FsStore) +add_test("FileStoreIO" test/FileStoreIO) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b08972ccd..a32976aba 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,9 +6,9 @@ add_executable( ) add_executable( - FsStore - fsstore.cpp + FileStoreIO + filestoreio.cpp ) target_link_libraries(Format WFS) -target_link_libraries(FsStore WFS) +target_link_libraries(FileStoreIO WFS) diff --git a/test/fsstore.cpp b/test/filestoreio.cpp similarity index 100% rename from test/fsstore.cpp rename to test/filestoreio.cpp