ultimatepp/uppsrc/Core/core.upt
mdelfede d2b54f7989 changed svn layout
git-svn-id: svn://ultimatepp.org/upp/trunk@281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-06-07 22:31:27 +00:00

34 lines
628 B
Text

template "Core console project" main;
option "Create header" header;
option "Commandline loop" cmdline;
option "Multithreaded" mt;
@@<: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><:.:>
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";
mainconfig
"" = <:?mt:>"MT"<:/:>""<:.:>;