aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/nim
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2024-11-19 17:57:19 +0100
committerChristian Kandeler <[email protected]>2024-11-20 09:11:17 +0000
commit4665f0ec343cb2aca6737cc222f5957fbad6eedf (patch)
tree94669cf015aab7dade31ce9e429c82f3526baae3 /src/plugins/nim
parentceeeba5667948920fe62c06579ea9c670c55f1fe (diff)
ProjectExplorer: Dissolve kitaspects.{h,cpp}
Move the remaining classes into their own files. Change-Id: I301e72004c21446fa9b8f15942bb042218b0ecef Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/nim')
-rw-r--r--src/plugins/nim/project/nimbuildsystem.cpp2
-rw-r--r--src/plugins/nim/project/nimcompilerbuildstep.cpp2
-rw-r--r--src/plugins/nim/project/nimproject.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/nim/project/nimbuildsystem.cpp b/src/plugins/nim/project/nimbuildsystem.cpp
index 5ffd852c41a..b8425df69a2 100644
--- a/src/plugins/nim/project/nimbuildsystem.cpp
+++ b/src/plugins/nim/project/nimbuildsystem.cpp
@@ -6,9 +6,9 @@
#include "nimconstants.h"
#include "nimbleproject.h"
-#include <projectexplorer/kitaspects.h>
#include <projectexplorer/target.h>
#include <projectexplorer/toolchain.h>
+#include <projectexplorer/toolchainkitaspect.h>
#include <utils/algorithm.h>
#include <utils/fileutils.h>
diff --git a/src/plugins/nim/project/nimcompilerbuildstep.cpp b/src/plugins/nim/project/nimcompilerbuildstep.cpp
index aaf6ff42969..8c2dfa67c40 100644
--- a/src/plugins/nim/project/nimcompilerbuildstep.cpp
+++ b/src/plugins/nim/project/nimcompilerbuildstep.cpp
@@ -10,11 +10,11 @@
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/ioutputparser.h>
-#include <projectexplorer/kitaspects.h>
#include <projectexplorer/processparameters.h>
#include <projectexplorer/project.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/toolchain.h>
+#include <projectexplorer/toolchainkitaspect.h>
#include <utils/qtcprocess.h>
#include <utils/qtcassert.h>
diff --git a/src/plugins/nim/project/nimproject.cpp b/src/plugins/nim/project/nimproject.cpp
index 33f09d19328..53e91b88a80 100644
--- a/src/plugins/nim/project/nimproject.cpp
+++ b/src/plugins/nim/project/nimproject.cpp
@@ -9,10 +9,10 @@
#include <coreplugin/icontext.h>
-#include <projectexplorer/kitaspects.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/projectmanager.h>
#include <projectexplorer/toolchain.h>
+#include <projectexplorer/toolchainkitaspect.h>
using namespace ProjectExplorer;
using namespace Utils;