VERSIÓ 2.1.4:

- [NEW] Mostra tots els targets posibles, marcant el que está usant.
This commit is contained in:
2026-06-01 13:52:22 +02:00
parent 2edb275040
commit ae8f476c84
3 changed files with 10 additions and 5 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
lagueirto lagueirto
.vscode/* .vscode/*
*.exe *.exe
*.zip *.zip
build/*
+7 -3
View File
@@ -176,14 +176,18 @@ bool loadLagueirtoFile(const std::string &section_to_load)
if (end == std::string::npos) continue; if (end == std::string::npos) continue;
current_section = line.substr(1, end - 1); current_section = line.substr(1, end - 1);
// Detectar si es default // Detectar si es default
std::string rest = trim_copy(line.substr(end + 1)); std::string rest = trim_copy(line.substr(end + 1));
found_any_section = true; found_any_section = true;
if (rest == "default") found_default = true; if (rest == "default") found_default = true;
if (section_to_load.empty() && rest == "default") active = true; if (section_to_load.empty() && rest == "default") active = true;
else active = (current_section == section_to_load); else active = (current_section == section_to_load);
if (active) loaded_section = current_section; if (active) {
loaded_section = current_section;
std::cout << " > " << current_section << " < " << std::endl;
} else {
std::cout << " - " << current_section << std::endl;
}
continue; continue;
} }
@@ -546,7 +550,7 @@ std::cout << " |___/ v" << LAGUEIRTO_VERSION << std::endl;
} }
if (must_recompile_all) { if (must_recompile_all) {
std::cout << "remove: '" << build_path << "'" << std::endl; std::cout << "Doing a full rebuild" << std::endl;
std::filesystem::remove_all(build_path); std::filesystem::remove_all(build_path);
} }
+1 -1
View File
@@ -1,3 +1,3 @@
#pragma once #pragma once
#define LAGUEIRTO_VERSION "2.1.3" #define LAGUEIRTO_VERSION "2.1.4"