You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to include the conda package that has been installed in my C++ project using the props file. Is there a way to generate a props file in conda for an installed package?
If not, what are the other ways to include the installed conda package in a C++ project? I do not want to use CMake, hence taking the props file approach.
The text was updated successfully, but these errors were encountered:
Can you explain what you mean or need exactly? No-one's forcing you to use the CMake metadata that comes with the package. The headers are in $CONDA_PREFIX/include/boost, and the libraries are under $CONDA_PREFIX/lib/libboost_*.so, you can use those without CMake of course.
Comment:
I want to include the conda package that has been installed in my C++ project using the props file. Is there a way to generate a props file in conda for an installed package?
If not, what are the other ways to include the installed conda package in a C++ project? I do not want to use CMake, hence taking the props file approach.
The text was updated successfully, but these errors were encountered: