diff --git a/deps/ox/src/ox/fs/CMakeLists.txt b/deps/ox/src/ox/fs/CMakeLists.txt
index ec1065b7..3bd52825 100644
--- a/deps/ox/src/ox/fs/CMakeLists.txt
+++ b/deps/ox/src/ox/fs/CMakeLists.txt
@@ -7,6 +7,7 @@ add_library(
 		filesystem/filesystem.cpp
 		filesystem/pathiterator.cpp
 		filesystem2/directory.cpp
+		filesystem2/filesystem.cpp
 )
 
 set_property(
diff --git a/deps/ox/src/ox/fs/filesystem2/filesystem.cpp b/deps/ox/src/ox/fs/filesystem2/filesystem.cpp
new file mode 100644
index 00000000..a4d7fb32
--- /dev/null
+++ b/deps/ox/src/ox/fs/filesystem2/filesystem.cpp
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2015 - 2018 gtalent2@gmail.com
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include "filesystem.hpp"
+
+namespace ox::fs {
+
+template class Directory<uint16_t>;
+template class Directory<uint32_t>;
+
+template class FileSystemTemplate<uint16_t>;
+template class FileSystemTemplate<uint32_t>;
+
+}