From eba3c4e08db633c03cfa0a4de07bc83cebc7e159 Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Mon, 17 Jun 2024 18:00:53 +0800 Subject: [PATCH] commands/cmake: add some common variable types --- commands/cmake.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commands/cmake.ts b/commands/cmake.ts index e494410..b43aa19 100644 --- a/commands/cmake.ts +++ b/commands/cmake.ts @@ -18,6 +18,10 @@ export interface GeneralVariable { CMAKE_SYSROOT?: string, CMAKE_C_COMPILER?: string, CMAKE_CXX_COMPILER?: string, + CMAKE_Fortran_COMPILER?: string, + CMAKE_Fortran_COMPILER_ID?: string, + CMAKE_C_FLAGS?: string, + CMAKE_CXX_FLAGS?: string, } /**