-
Notifications
You must be signed in to change notification settings - Fork 17
Using Manual Dependencies
James Bradbury edited this page Jan 25, 2022
·
1 revision
In some cases you may want to use your own copies of the required libraries. Unless specified, the build system will download these automatically. To bypass this behavior, use the following cache variables:
-
FLUID_PATH
: location of the Fluid Corpus Manipulation Library -
FLUID_DOCS_PATH
: location offlucoma-docs
repository (e.g. for debugging documentation generation) -
EIGEN_PATH
location of the Eigen library -
HISS_PATH
location of the HISSTools library
For example, use this to use your own copy of the Fluid Corpus Manipulation Library
cmake -DMAX_SDK_PATH=<location of your Max SDK> -DFLUID_PATH=<location of Fluid Corpus Manipulation Library> ..
To find out which branches / tags / commits of these we use, look in the top level CMakeLists.txt
of the Fluid Corpus Manipulation Library for the FetchContent_Declare
statements for each dependency.