Fix FS include path in Nostalgia

This commit is contained in:
2018-02-13 19:20:20 -06:00
parent d5b0bb69df
commit d3b8e6089b
8 changed files with 56 additions and 13 deletions

View File

@ -6,7 +6,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <ox/fs/filesystem.hpp>
#include <ox/fs/fs.hpp>
#include <ox/std/std.hpp>
#include "../media.hpp"

View File

@ -6,7 +6,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <ox/fs/filesystem.hpp>
#include <ox/fs/fs.hpp>
#include <ox/std/std.hpp>
#include "addresses.hpp"

View File

@ -7,6 +7,7 @@
*/
#include <QDir>
#include <QDebug>
#include "project.hpp"
@ -28,6 +29,7 @@ Project::~Project() {
}
void Project::create() {
qDebug() << "Project::create";
QDir().mkpath(m_path);
auto buffSize = 1024;