Hi,
it would be good if the pkg-config script (OpenColorIO.pc) was installed when building under MSYS on windows. Here's a simple patch to do that:
--- b/src/OpenColorIO/CMakeLists.txt 2022-06-05 20:59:43.000000000 +0200
+++ a/src/OpenColorIO/CMakeLists.txt 2022-08-23 17:17:20.516786583 +0200
@@ -171,7 +171,7 @@
SystemMonitor.cpp
)
-if(NOT WIN32)
+if(NOT WIN32 OR MSYS)
# Install the pkg-config file.
Hi,
it would be good if the pkg-config script (
OpenColorIO.pc) was installed when building under MSYS on windows. Here's a simple patch to do that: