From 33cc338c57bd37270e56eff93613d2f49e1a99bd Mon Sep 17 00:00:00 2001 From: Lyra Date: Mon, 29 Jun 2026 12:58:49 -0400 Subject: [PATCH] RelwithDeb bug fix --- src/commands.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index a226d0e..eba5505 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -30,7 +30,7 @@ void Application::buildProject() { auto configureDirRelWithDebTask = m_Taskflow .emplace([this]() { - this->configureDir("build/relwithdeb", "RelWithDeb"); + this->configureDir("build/relwithdeb", "RelWithDebInfo"); }) .name("configureDir(build/relwithdeb)"); auto buildDirRelWithDebTask = @@ -91,7 +91,7 @@ void Application::buildProject() { auto configureDirTask = m_Taskflow .emplace([this]() { - this->configureDir("build/relwithdeb", "RelWithDeb"); + this->configureDir("build/relwithdeb", "RelWithDebInfo"); }) .name("configureDir(build/relwithdeb)"); auto buildDirTask = @@ -139,7 +139,7 @@ void Application::configureProject() { auto configureDirRelWithDebTask = m_Taskflow .emplace([this]() { - this->configureDir("build/relwithdeb", "RelWithDeb"); + this->configureDir("build/relwithdeb", "RelWithDebInfo"); }) .name("configureDir(build/relwithdeb)"); checkBuildDirsTask.precede(configureDirRelWithDebTask); @@ -173,7 +173,7 @@ void Application::configureProject() { auto configureDirRelWithDebTask = m_Taskflow .emplace([this]() { - this->configureDir("build/relwithdeb", "RelWithDeb"); + this->configureDir("build/relwithdeb", "RelWithDebInfo"); }) .name("configureDir(build/relwithdeb)"); checkBuildDirsTask.precede(configureDirRelWithDebTask);