We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install pyproject
pip install pybind11 and copy its path into Cmakelists.txt. set(pybind11_DIR "xxxx/pybind11/share/cmake/pybind11") find_package(pybind11 REQUIRED)
install Eigen3 and copy its path into Cmakelists.txt too. set(Eigen3_DIR "xxxx/local/share/eigen3/cmake") find_package(Eigen3 REQUIRED)
Hope it useful for your issues.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pip install pyproject
pip install pybind11 and copy its path into Cmakelists.txt.
set(pybind11_DIR "xxxx/pybind11/share/cmake/pybind11")
find_package(pybind11 REQUIRED)
install Eigen3 and copy its path into Cmakelists.txt too.
set(Eigen3_DIR "xxxx/local/share/eigen3/cmake")
find_package(Eigen3 REQUIRED)
Hope it useful for your issues.
The text was updated successfully, but these errors were encountered: