open-story-teller/core/src/compiler.cpp
anthony@rabine.fr f538148a9a
Some checks failed
build-story-editor / build_linux (push) Has been cancelled
build-story-editor / build_win32 (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Create separated core (WIP) GUI agnostic, new sub pages for functions
2024-08-30 13:25:40 +02:00

10 lines
248 B
C++

#include "compiler.h"
std::string Compiler::FileToConstant(const std::string &FileName, const std::string &extension)
{
std::string f = SysLib::RemoveFileExtension(FileName);
return "$" + FileName + " DC8 \"" + FileName + "\", 8\r\n";
}