From 5f5a14f69f82e0f867a569fa69019a9158a77aa0 Mon Sep 17 00:00:00 2001 From: Ivan Shakhov Date: Tue, 17 Mar 2026 12:43:45 +0100 Subject: [PATCH] remove caching of the LIBNAME in CMake configuration to let the generated run configuration in Rider/CLion to updated as soon as the library name is changed, fixes https://youtrack.jetbrains.com/issue/RIDER-136871 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a252427c..dde158d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.17) if(CMAKE_C_COMPILER) endif() -set(LIBNAME "EXTENSION-NAME" CACHE STRING "The name of the library") +set(LIBNAME "EXTENSION-NAME") # "The name of the library" set(GODOT_PROJECT_DIR "project" CACHE STRING "The directory of a Godot project folder") # Make sure all the dependencies are satisfied