Nim: Remove unused code

Change-Id: I989b951c0fa3a7bc732105c5b3985ea6b61a2fab
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Filippo Cucchetto <filippocucchetto@gmail.com>
This commit is contained in:
Bernhard Beschow
2020-09-03 13:11:41 +02:00
committed by hjk
parent 75c1b8d582
commit 51fd8f5f70
6 changed files with 0 additions and 77 deletions

View File

@@ -20,7 +20,6 @@ add_qtc_plugin(Nim
project/nimcompilerbuildstep.cpp project/nimcompilerbuildstep.h
project/nimcompilercleanstep.cpp project/nimcompilercleanstep.h
project/nimproject.cpp project/nimproject.h
project/nimprojectnode.cpp project/nimprojectnode.h
project/nimrunconfiguration.cpp project/nimrunconfiguration.h
project/nimtoolchain.cpp project/nimtoolchain.h
project/nimtoolchainfactory.cpp project/nimtoolchainfactory.h

View File

@@ -25,7 +25,6 @@ HEADERS += \
project/nimbuildsystem.h \
project/nimblebuildsystem.h \
project/nimproject.h \
project/nimprojectnode.h \
project/nimbuildconfiguration.h \
project/nimcompilerbuildstep.h \
project/nimcompilercleanstep.h \
@@ -61,7 +60,6 @@ SOURCES += \
project/nimbuildsystem.cpp \
project/nimblebuildsystem.cpp \
project/nimproject.cpp \
project/nimprojectnode.cpp \
project/nimbuildconfiguration.cpp \
project/nimcompilerbuildstep.cpp \
project/nimcompilercleanstep.cpp \

View File

@@ -42,7 +42,6 @@ QtcPlugin {
"nimcompilerbuildstep.h", "nimcompilerbuildstep.cpp",
"nimcompilercleanstep.h", "nimcompilercleanstep.cpp",
"nimproject.h", "nimproject.cpp",
"nimprojectnode.h", "nimprojectnode.cpp",
"nimrunconfiguration.h", "nimrunconfiguration.cpp",
"nimtoolchain.h", "nimtoolchain.cpp",
"nimtoolchainfactory.h", "nimtoolchainfactory.cpp",

View File

@@ -28,7 +28,6 @@
#include "nimconstants.h"
#include "nimproject.h"
#include "nimbleproject.h"
#include "nimprojectnode.h"
#include <projectexplorer/target.h>
#include <projectexplorer/toolchain.h>

View File

@@ -1,34 +0,0 @@
/****************************************************************************
**
** Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
** Contact: http://www.qt.io/licensing
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#include "nimprojectnode.h"
namespace Nim {
NimProjectNode::NimProjectNode(const Utils::FilePath &projectFilePath)
: ProjectNode(projectFilePath)
{}
} // namespace Nim

View File

@@ -1,38 +0,0 @@
/****************************************************************************
**
** Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
** Contact: http://www.qt.io/licensing
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#pragma once
#include <projectexplorer/projectnodes.h>
namespace Nim {
class NimProjectNode : public ProjectExplorer::ProjectNode
{
public:
NimProjectNode(const Utils::FilePath &projectFilePath);
};
}