Build with non-standard boost locations.
[kdepim.git] / wizards / groupwisemain.cpp
blob62d8f5511bed75cd313f09bda87d586bdd036679
1 /*
2 This file is part of kdepim.
4 Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include "groupwisewizard.h"
23 #include <kaboutdata.h>
24 #include <kapplication.h>
25 #include <kdebug.h>
26 #include <kcmdlineargs.h>
27 #include <kglobal.h>
28 #include <klocale.h>
30 int main(int argc,char **argv)
32 KLocale::setMainCatalog( "kdepimwizards" );
34 KAboutData aboutData( "groupwisewizard", 0,
35 ki18n( "Novell GroupWise Configuration Wizard" ),
36 "0.1" );
37 KCmdLineArgs::init( argc, argv, &aboutData );
39 KCmdLineOptions options;
40 options.add("verbose", ki18n("Verbose output"));
41 KCmdLineArgs::addCmdLineOptions( options );
43 KApplication app;
45 KGlobal::locale()->insertCatalog( "libkdepim" );
47 KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
49 bool verbose = false;
50 if ( args->isSet( "verbose" ) ) verbose = true;
51 args->clear();
52 GroupwiseWizard wizard;
54 return wizard.exec();