RelwithDeb bug fix
All checks were successful
Build / Build (linux) (push) Successful in 34s
Build / Build (windows) (push) Successful in 36s

This commit is contained in:
2026-06-29 12:58:49 -04:00
parent 00b4a22c9e
commit 33cc338c57

View File

@@ -30,7 +30,7 @@ void Application::buildProject() {
auto configureDirRelWithDebTask = auto configureDirRelWithDebTask =
m_Taskflow m_Taskflow
.emplace([this]() { .emplace([this]() {
this->configureDir("build/relwithdeb", "RelWithDeb"); this->configureDir("build/relwithdeb", "RelWithDebInfo");
}) })
.name("configureDir(build/relwithdeb)"); .name("configureDir(build/relwithdeb)");
auto buildDirRelWithDebTask = auto buildDirRelWithDebTask =
@@ -91,7 +91,7 @@ void Application::buildProject() {
auto configureDirTask = auto configureDirTask =
m_Taskflow m_Taskflow
.emplace([this]() { .emplace([this]() {
this->configureDir("build/relwithdeb", "RelWithDeb"); this->configureDir("build/relwithdeb", "RelWithDebInfo");
}) })
.name("configureDir(build/relwithdeb)"); .name("configureDir(build/relwithdeb)");
auto buildDirTask = auto buildDirTask =
@@ -139,7 +139,7 @@ void Application::configureProject() {
auto configureDirRelWithDebTask = auto configureDirRelWithDebTask =
m_Taskflow m_Taskflow
.emplace([this]() { .emplace([this]() {
this->configureDir("build/relwithdeb", "RelWithDeb"); this->configureDir("build/relwithdeb", "RelWithDebInfo");
}) })
.name("configureDir(build/relwithdeb)"); .name("configureDir(build/relwithdeb)");
checkBuildDirsTask.precede(configureDirRelWithDebTask); checkBuildDirsTask.precede(configureDirRelWithDebTask);
@@ -173,7 +173,7 @@ void Application::configureProject() {
auto configureDirRelWithDebTask = auto configureDirRelWithDebTask =
m_Taskflow m_Taskflow
.emplace([this]() { .emplace([this]() {
this->configureDir("build/relwithdeb", "RelWithDeb"); this->configureDir("build/relwithdeb", "RelWithDebInfo");
}) })
.name("configureDir(build/relwithdeb)"); .name("configureDir(build/relwithdeb)");
checkBuildDirsTask.precede(configureDirRelWithDebTask); checkBuildDirsTask.precede(configureDirRelWithDebTask);