diff options
author | Bernhard Beschow <shentey@gmail.com> | 2020-09-03 13:11:41 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-11-30 11:44:45 +0000 |
commit | 51fd8f5f70af58c79add15bb83d26b15d6e893a0 (patch) | |
tree | 3d27864b82810e32713e93ae40f87071021b5547 | |
parent | 75c1b8d582e48b50efac5e65a2b41d6298c653dc (diff) | |
download | qt-creator-51fd8f5f70af58c79add15bb83d26b15d6e893a0.tar.gz |
Nim: Remove unused code
Change-Id: I989b951c0fa3a7bc732105c5b3985ea6b61a2fab
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Filippo Cucchetto <filippocucchetto@gmail.com>
-rw-r--r-- | src/plugins/nim/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/plugins/nim/nim.pro | 2 | ||||
-rw-r--r-- | src/plugins/nim/nim.qbs | 1 | ||||
-rw-r--r-- | src/plugins/nim/project/nimbuildsystem.cpp | 1 | ||||
-rw-r--r-- | src/plugins/nim/project/nimprojectnode.cpp | 34 | ||||
-rw-r--r-- | src/plugins/nim/project/nimprojectnode.h | 38 |
6 files changed, 0 insertions, 77 deletions
diff --git a/src/plugins/nim/CMakeLists.txt b/src/plugins/nim/CMakeLists.txt index 739cbf27a9..1defa28336 100644 --- a/src/plugins/nim/CMakeLists.txt +++ b/src/plugins/nim/CMakeLists.txt @@ -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 diff --git a/src/plugins/nim/nim.pro b/src/plugins/nim/nim.pro index 1f19d4b631..92655e31b0 100644 --- a/src/plugins/nim/nim.pro +++ b/src/plugins/nim/nim.pro @@ -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 \ diff --git a/src/plugins/nim/nim.qbs b/src/plugins/nim/nim.qbs index fe939465d0..113d4e6e7e 100644 --- a/src/plugins/nim/nim.qbs +++ b/src/plugins/nim/nim.qbs @@ -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", diff --git a/src/plugins/nim/project/nimbuildsystem.cpp b/src/plugins/nim/project/nimbuildsystem.cpp index 323fb3d731..ba128c7932 100644 --- a/src/plugins/nim/project/nimbuildsystem.cpp +++ b/src/plugins/nim/project/nimbuildsystem.cpp @@ -28,7 +28,6 @@ #include "nimconstants.h" #include "nimproject.h" #include "nimbleproject.h" -#include "nimprojectnode.h" #include <projectexplorer/target.h> #include <projectexplorer/toolchain.h> diff --git a/src/plugins/nim/project/nimprojectnode.cpp b/src/plugins/nim/project/nimprojectnode.cpp deleted file mode 100644 index 8e2570d950..0000000000 --- a/src/plugins/nim/project/nimprojectnode.cpp +++ /dev/null @@ -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 diff --git a/src/plugins/nim/project/nimprojectnode.h b/src/plugins/nim/project/nimprojectnode.h deleted file mode 100644 index 3eb4ac709e..0000000000 --- a/src/plugins/nim/project/nimprojectnode.h +++ /dev/null @@ -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); -}; - -} |