fixed tests
Some checks failed
CI / build-test-release (push) Failing after 15m1s

This commit is contained in:
Jorijn van der Graaf 2026-04-30 02:35:59 +02:00
commit f90c633898
6 changed files with 9 additions and 10 deletions

View file

@ -25,9 +25,9 @@ int main() {
return 1;
}
fs::path staticArchive = work / "mathlib" / "bin" / "MathLib-x86_64-pc-linux-gnu-native" / "libMathLib.a";
fs::path dynamicSO = work / "greetlib" / "bin" / "GreetLib-x86_64-pc-linux-gnu-native" / "libGreetLib.so";
fs::path artifact = work / "bin" / "libs-app-x86_64-pc-linux-gnu-native" / "libs-app";
fs::path staticArchive = cfg.dependencies[0]->BinDir() / "libMathLib.a";
fs::path dynamicSO = cfg.dependencies[1]->BinDir() / "libGreetLib.so";
fs::path artifact = cfg.BinDir() / "libs-app";
if (!fs::exists(staticArchive)) {
std::println(std::cerr, "static archive missing at {}", staticArchive.string());