Nick Avramoussis
Nick Avramoussis
Hi @andrewrgarcia are you still running into this issue? If so could you post the output you get when running `cmake`? Verbose build output (i.e. `make VERBOSE=1`) would be useful...
Thanks @andrewrgarcia however I can't see the build output for the OpenVDB Python project in the files you've uploaded. Could you provide the verbose make output for that too? Are...
The OpenVDB repo CMake build system has flags for enabling/disabling different build components. They are listed here: https://www.openvdb.org/documentation/doxygen/build.html#buildComponents The output from your CMake tells me you're not enabling the pyopenvdb...
If you're invoking `cmake` from the command line you simply add it to your command. For example: ``` cmake -DOPENVDB_BUILD_PYTHON_MODULE=ON .. ``` Otherwise, in the root `CMakeLists.txt` file, you can...
Could you try running the following: ``` python -v -c "import pyopenvdb" &> pyvdb_out.txt ``` It will create a file `pyvdb_out.txt` which I'd like you to upload. If you get...
Okay I no longer believe this to be an issue with OpenVDB. The following in that file points to your python/boost installation being incomplete: ``` import 'site' # Traceback (most...
The list I've linked is **not** the same list as on the readme, so I would run the following to be absolutely sure: ``` apt-get install libboost-python-dev apt-get install libboost-numpy-dev...
@ianww I've created a new issue to track this. This seems to be an issue with our CMake Find modules for locating the correctly named libs specifically on Windows for...
Hello @ianww, As you've pointed out, the issues you're running into are due to the ambiguity of your custom libraries conflicting with Houdini's deployed libraries. The main problem is due...
It seems like this is an issue with Boost and VS 19. A bit of googling threw up this thread on the VS dev community: https://developercommunity.visualstudio.com/content/problem/756694/including-windowsh-and-boostinterprocess-headers-l.html Specifically, the comments suggest...