1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <sng2html/sng2html/ProjectFile.hpp>
 7 #include <soulng/util/Path.hpp>
 8 
 9 namespace sng2html { namespace sng2html {
10 
11 using namespace soulng::util;
12 
13 ProjectFile::ProjectFile(const std::string& fileName_const std::u32string& projectName_) : fileName(fileName_)projectName(projectName_)
14     basePath(Path::GetDirectoryName(GetFullPath(fileName)))
15 {
16 }
17 
18 void ProjectFile::AddSourceFile(const std::string& sourceFile)
19 {
20     sourceFiles.push_back(sourceFile);
21 }
22 
23 } } // namespace sng2html::sng2html