This commit is contained in:
parent
0ab30a1d81
commit
f90c633898
6 changed files with 9 additions and 10 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue