neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit bfe6b49447744cea1cd941660b2a3a501a0701cb
parent 40287319002ff6ced3d280657c276fb7c9ef4df5
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Sun, 19 Feb 2023 15:06:53 +0100

build(MSVC): enable assertions on RelWithDebInfo build type (#22326)


Diffstat:
MCMakeLists.txt | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -151,6 +151,7 @@ endif() # We _want_ assertions in RelWithDebInfo build-type. if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES DNDEBUG) string(REPLACE "-DNDEBUG" "" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") + string(REPLACE "/DNDEBUG" "" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") endif() option(LOG_LIST_ACTIONS "Add list actions logging" OFF)