external dep lib dir
Some checks failed
CI / build-test-release (push) Failing after 13m55s

This commit is contained in:
Jorijn van der Graaf 2026-05-06 03:59:19 +02:00
commit 659103a123
2 changed files with 21 additions and 1 deletions

View file

@ -43,6 +43,13 @@ export namespace Crafter {
ExternalBuilder builder = ExternalBuilder::None;
std::vector<std::string> options;
std::vector<fs::path> includeDirs;
// Extra library search paths (each becomes a -L flag), interpreted
// relative to the CMake build dir. Currently only honoured for
// ExternalBuilder::CMake. The CMake builder always adds its
// top-level build dir as a -L; libDirs is for projects (msquic,
// others) whose CMakeLists set LIBRARY_OUTPUT_DIRECTORY to a subdir
// of the build tree.
std::vector<fs::path> libDirs;
std::vector<std::string> libs;
};