ultimatepp/uppsrc/Core/core.upt
cxl 7a5a138a5d uppsrc: MT flags removed from project templates
git-svn-id: svn://ultimatepp.org/upp/trunk@10751 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2017-01-23 23:24:46 +00:00

32 lines
576 B
Text

template "Core console project" main;
option "Create header" header;
option "Commandline loop" cmdline;
@@<:PACKAGE:>.h
??header
#ifndef _<:PACKAGE:>_<:PACKAGE:>_h
#define _<:PACKAGE:>_<:PACKAGE:>_h
#include <Core/Core.h>
using namespace Upp;
#endif
@@<:PACKAGE:>.cpp
#include <:?header:>"<:PACKAGE:>.h"<:/:><Core/Core.h>
using namespace Upp;<:.:>
CONSOLE_APP_MAIN
{<:?cmdline:>
const Vector<String>& cmdline = CommandLine();
for(int i = 0; i < cmdline.GetCount(); i++) {
}<:.:>
}
@@<:PACKAGE:>.upp
uses Core;
file<:?header:>
<:PACKAGE:>.h,<:.:>
<:PACKAGE:>.cpp;