Today I stumbled over vcpkg's wiring between pystring and OpenColorIO. I didn't find documentation:
What is the canonical way to include pystring.h?
a) #include <pystring.h>
- found in OpenColorIO
- could work with installations in
include (global) or in include/pystring (isolated).
- could easily be covered by a uniform CMake target (
pystring::pystring) for installed or sub-project usage.
b) #include <pystring/pystring.h>
Today I stumbled over vcpkg's wiring between pystring and OpenColorIO. I didn't find documentation:
What is the canonical way to include
pystring.h?a)
#include <pystring.h>include(global) or ininclude/pystring(isolated).pystring::pystring) for installed or sub-project usage.b)
#include <pystring/pystring.h>