aboutsummaryrefslogtreecommitdiffstats
path: root/qt-cpp/src/kit-manager.ts
diff options
context:
space:
mode:
Diffstat (limited to 'qt-cpp/src/kit-manager.ts')
-rw-r--r--qt-cpp/src/kit-manager.ts29
1 files changed, 1 insertions, 28 deletions
diff --git a/qt-cpp/src/kit-manager.ts b/qt-cpp/src/kit-manager.ts
index 135e799..92e6a0c 100644
--- a/qt-cpp/src/kit-manager.ts
+++ b/qt-cpp/src/kit-manager.ts
@@ -32,8 +32,6 @@ export const CMAKE_GLOBAL_KITS_FILEPATH = path.join(
'cmake-tools-kits.json'
);
-type CompilerVendorEnum = 'Clang' | 'GCC' | 'MSVC';
-
type Environment = Record<string, string | undefined>;
interface CMakeGenerator {
@@ -42,32 +40,7 @@ interface CMakeGenerator {
platform?: string | undefined;
}
-interface KitDetect {
- /**
- * The vendor name of the kit
- */
- vendor?: CompilerVendorEnum;
-
- /**
- * The triple the kit
- */
- triple?: string;
-
- /**
- * The version of the kit
- */
- version?: string;
-
- /**
- * The version of the C runtime for the kit
- * In most case it's equal to version, but for `Clang for MSVC`
- * The Clang version are version
- * The MSVC version are versionRuntime
- */
- versionRuntime?: string;
-}
-
-export interface Kit extends KitDetect {
+export interface Kit {
/**
* The name of the kit
*/