1
2
3
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 } }