// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2006-2007 Torsten Rahn // Copyright 2007 Inge Wallin // Copyright 2008 Patrick Spendrin // #include "tccore.h" using namespace Marble; int main(int argc, char *argv[]) { TCCoreApplication app( argc, argv ); if( argc < 4 ) { /* PREFIX: this is the prefix of the source directory INSTALLMAP: this is the map that you want to install - in the form MAPNAME/MAPNAME.jpg DEM: Digital Elevation Model(grayscale) set to "true" for srtm sources set to "false" else TARGETDIR: the directory where the output should go to */ qDebug() << "Syntax: tilecreator PREFIX INSTALLMAP DEM TARGETDIR"; return -1; } else { return app.exec(); } }