[ox/fs] Add template instantiations for FileSystemTemplate
This commit is contained in:
parent
61f77767bf
commit
c8ff73b56e
1
deps/ox/src/ox/fs/CMakeLists.txt
vendored
1
deps/ox/src/ox/fs/CMakeLists.txt
vendored
@ -7,6 +7,7 @@ add_library(
|
||||
filesystem/filesystem.cpp
|
||||
filesystem/pathiterator.cpp
|
||||
filesystem2/directory.cpp
|
||||
filesystem2/filesystem.cpp
|
||||
)
|
||||
|
||||
set_property(
|
||||
|
19
deps/ox/src/ox/fs/filesystem2/filesystem.cpp
vendored
Normal file
19
deps/ox/src/ox/fs/filesystem2/filesystem.cpp
vendored
Normal file
@ -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>;
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user