Skip to content
Snippets Groups Projects
Commit aaf296ca authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

remove forgotten proxmlreader test

parent c9b80ae3
No related branches found
No related tags found
No related merge requests found
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include "proreader.h"
#include "proitems.h"
#include "proxml.h"
#include <QtCore/QDebug>
int main(int argc, char *argv[])
{
ProReader pr;
ProFile *pf = pr.read(QString::fromUtf8(argv[1]));
qDebug() << Qt4ProjectManager::Internal::ProXmlParser::itemToString(pf);
return 0;
}
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += console
QT += xml
PROXMLPATH = ../../../src/plugins/qt4projectmanager/proparser
PROPARSERPATH = $$(QTDIR)/tools/linguist/shared
INCLUDEPATH += $$PROPARSERPATH $$PROXMLPATH
# Input
HEADERS += $$PROPARSERPATH/proitems.h \
$$PROXMLPATH/proxml.h \
$$PROPARSERPATH/proreader.h
SOURCES += main.cpp \
$$PROPARSERPATH/proitems.cpp \
$$PROXMLPATH/proxml.cpp \
$$PROPARSERPATH/proreader.cpp
#comment
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += console
QT += xml
win32 {
PROPARSERPATH = ../../some/other/test/test
unix:PROPARSERPATH = ../../test/test
}
# test comment
PROPARSERPATH = ../../../src/plugins/qt4projectmanager/proparser
INCLUDEPATH += $$PROPARSERPATH
# Input
HEADERS += $$PROPARSERPATH/proitems.h \ # test comment2
$$PROPARSERPATH/proxml.h \
$$PROPARSERPATH/proreader.h
SOURCES += main.cpp \
$$PROPARSERPATH/proitems.cpp \
# test comment 3
$$PROPARSERPATH/proxml.cpp \
$$PROPARSERPATH/proreader.cpp
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment