From 452e2e533f767a3fd536e49559468b10ecab724f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0001/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index af8476f..d983712 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ CTestTestfile.cmake Makefile diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From da42443acfee5d3ca7267f9d18d917864b04f8a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0002/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From d179386399a9fa28833228b9c8f2fd58e902e869 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0003/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From bfea05d5acb11daf654affdec8bdc6c76e1d44c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0004/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From d42a591ff663d7dc1c840005cc5fa1b24a92a5be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0005/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From fd7a9f6bc351cb1d700684373e9f9089456e0f58 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0006/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 1277d60b23d0056e5a204cf2005f5c46eac92ee6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:58:36 +0300 Subject: [PATCH 0007/2596] update --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index ce06000..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -11,11 +11,8 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ -<<<<<<< HEAD tests/test_files/ -======= ->>>>>>> 452e2e533f767a3fd536e49559468b10ecab724f CTestTestfile.cmake Makefile From acf7f624bba9c2e90fd7ab59c4009c130609460c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0008/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From 233e6a0542b9326428398729f13ea584e32087bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0009/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 01fc2fa9cc4354f6516008eff88adcd7f61b8f7e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0010/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From 8e54eb217c180f1f9318d67a273a0821c76a3221 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0011/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 075d473a02fa51ed88e2dba95f5b98405e638b60 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0012/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From a282aa23b21b036eb14cf2c79c8980c424e235a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0013/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 311bbc3cc07325ed794b540d39b3afbea189a128 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0014/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From d97cabebf1f0edb41650c5dfb06c31fdd87495cc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0015/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From dc941b2e418699d517cb665dd115b16f1f4889e3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0016/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From 28907b544b7666410a06bc7f772d14746d005810 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0017/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 979e34283598c78a9016c36572120e1fb5caae2b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0018/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From fe7363cd76c654d3324cec0cfdcbdaea5e14b135 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0019/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From 5b1748da5a2d89989ad8a4680bcb2b56d6b080da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0020/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From 0a5bd3aa5a8fa2917d1bb26396a6dd30be98e5a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0021/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From f19bb7e0a8c65f9f59b08a5d7ccdad4c5836dd6f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0022/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7feea..576c068 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # First, try to find just the right config files find_package(Imath CONFIG) From c3b822b70b04b8a3b95ebe6b9c34e1082b2e6ffc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0023/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576c068..fc7feea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,18 +12,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/dmxdenoiser) find_package(OpenEXR REQUIRED) find_package(Imath REQUIRED) -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # First, try to find just the right config files find_package(Imath CONFIG) From a7ef43328fb2ad60f41f04cddcac002f59a41e2d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0024/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From 80312c9553350c877eb049aebfec4e5bd170b40e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0025/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d7b5b535f1b8600229a972d7860d2254b6f17882 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0026/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c97b8fb03726d5915732e333f58ee6a020b96fdc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0027/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd2a39918d651b5fc997fe41b7b03b55ce8c9cb2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0028/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc265c35e78aede98874cba1a86b0307f1eb976f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0029/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa9d8c8e23697956eaad32a717ca8dbc5b1a6982 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0030/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1abf18ff01b708e40ed837888de7b4df114dbd6c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0031/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a13845cfc804362b5feae987241ee166cd42177d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0032/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2178121a7ea1ecdb5d1d26efe96a9dd399f4035d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0033/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c01443f46aec25a36de278ce687a5caa6e02a399 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0034/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c9cc9c076db75507da743e942f93b044593ba869 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0035/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2f0319572897043e08ec7c0350321142306a5275 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0036/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de4745a8392a7bd83503cbf66047123bef42d4c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0037/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cbf684e3c8e97889f90476b7d000c033921d03af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0038/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb2d8948b1ef11e5ba1910be883f3bdccb42818e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0039/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9249920ff868df3f12a095af580a4d3373e251a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0040/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24e7f4a48d8b85b5fe69ecfafc9dd012391385bc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0041/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ec1166d57c7e3cc259bf05e19aebc3507523ceb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0042/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f2a4113236db219e7443887366d1ab02dedf504 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0043/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 331ebc13527e21c6b5ac0cbce5f1f9e0ef25fe89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0044/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From d3ab7cf6d3c27f4a34dc1c4f1c700db1ffdff0f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0045/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cd871a106d2d11b5ca851815a9ab3da845e71ac7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0046/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4225ebc310a2c1f11783a4c0089d2a6f0ed5366 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0047/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5655f462e059d0c3bafb8637bcb85a1a6e10d663 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0048/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c0745d5e7ae875c6174f6bc870e88ae7ed753a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0049/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95c33f7e3fb3cd892f647cd912f7d94a6ecd6385 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0050/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 446cfc69d90de221d41a17505218f7adfa9d55b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0051/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 582c49ba44c2c1ae9fb4d265fcc54adc7cc2cb23 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0052/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51b2b6ee4f1ab9e0c7cb092d251f10ae98dda05e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0053/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f807bc7a8c5bb67795832e38d1c3da67654e091a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0054/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ca257843e090b166cc24cb7736ecf64ed11cc55 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0055/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae61f3b17482097824dbb785b3291e6a940a64aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0056/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b6196c74d8fec15678e68389fa42d6fb300fec1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0057/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 632e918871c61565c66398dfa26c57921c3c3c5e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0058/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0cb2b85ededfda06577638a015b55dd5e9f6f540 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0059/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf8e82a0ab7aefdd4900f1aca9046be1a9f913ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0060/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 36279e1c9e39f306c10bcd0967252688c0d6daf7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0061/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c21b2c0855bd477550284160dc10caa38c2fced3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0062/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 747f09cffd562d5f3a137935eef5be03fc61c2af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0063/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d1e1218b4ce371a1faf551cce8f4260c303befe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0064/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d20140a7ab25ede2ee82f3b085af69cd255ec34c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0065/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6a0dc274375604cb1d9402dff763b1735e6bc93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0066/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d08932f4cc6f0111b61075ad5ad2275ced96e02 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0067/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9b8fa7fca288736fc39a5b7ae5c92ba9b6198b3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0068/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 718f68c0d2a49fe88cb30cc3f5c1778b870f0b61 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0069/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4476344c619dd5ec194d72a3b014ff5238745df1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0070/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 295353b723905b2fa3b82dc32713a5fafde9f624 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0071/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13f51c211203d186c1101819845703141d480fd5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0072/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 044a90c4c70ac31ecb08586f1d0aa74193c17522 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0073/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3268a7d2fd6fd2e6dbf9886c9ea20cd7e69330ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0074/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 76bf9b99e368b896f945de49929626300cd77220 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0075/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ef451ce87aa4f9263c877e803ba135a449fab5f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0076/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6cac64ee19054983d0bf938984afa83e9d5e7731 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0077/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5dda875694250457322ef6661c1e6476d2bf1e74 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0078/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f402c0e241f9fe1612bc4ebe72fba0e042361b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0079/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e994417375906e456db1acbb698d4f6c4f781a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0080/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 56844527eb533c7d650b91393903ea0f9b38d6fb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0081/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29e471fd08152e58299346aac464d54319382cde Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0082/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e1a751186dd238a97b8f78d128bb84446bf7b0fc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0083/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66f1b572f2fc27967c2d48d65e27ba1c462cfd6c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 0084/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From c9a1b80ac29aa3dc9509015841ef26692c696640 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 0085/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From f467038a0b6024ac78da1f9a9999fb1218b8bb9b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0086/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From 49f5079385ee212aa55c24a0b6ec2bf46028374f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0087/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c9723420457125b1466482fd7d11e7aed210f669 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0088/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3207b563e8d9e18ff54e628c46c771535c73d39e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0089/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 806e25f103ce0fd0f90d0e7db2c4327f29a5212c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0090/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7aa95e7cfebb00a0ab584482a5f8063cffa83c69 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0091/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e54e2c849b2e7f11a0607909bdf55c58a707fc98 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0092/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 04aac62de7289a0a2ef2040b2b5d230b3605367a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0093/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b257375121932052acb3c610bb848e5244d36818 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0094/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f366f9f93c713a15ac20e5e0684bd6395bbc491 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0095/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ba5930765575db6b521a87fe060386e12d7b07e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0096/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b11d02a10dd6619c4c0e39853c5b8c27279ab0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0097/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d927d9f8a96bc60ddb1064bd9fa9436b71e0996b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0098/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1417e6dccd8a3819703b7b5f364bbd8a05447ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0099/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9b93ea6fbccb6ea452042c79020824e9175dadf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0100/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba0d8f213319a4ea382bea69636f8d0ed91823e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0101/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5de3ddb1bbcdb7ab3872f5f18b16054b4586556 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0102/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From abf1504c0b6940ebcf13e6429f61a77045942d4f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0103/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 621fc2d98afd87531898cfc367e7ea7f570af025 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0104/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f7ad13f13136c1df39456ead8c35ca7f543be5b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0105/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0250f34e63e8f471dcba859966509f64a43cf005 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0106/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99464cf9b0a9ebd635f11e76afab9bf2575a674e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0107/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0070db5bdf6b5a43711ffa8938aa3e8c13e14c28 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0108/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71bb8a35337b87dd55d377ffe990d38f4b131e0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0109/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 091ab0b37570562262951e525c71869260d4bd3e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0110/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c88b34528d2a78d78ef44077fa185540210480e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0111/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92a7f423e110281462b2a5d45095593d3b180dc2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0112/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a6399610acbede2ca23587708bad7aea412f969 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0113/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4050d30c65cc9156e08bf9a0ec67fc4d1315ecf6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0114/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 39b885ea9290b5d26b8b2d4dc7c63b8b1958d12e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0115/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 33abc4157116fafadde1df27a20562bbc332b7f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0116/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b371918d1e1c30443f0d53d25d38102a252dc842 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0117/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3edea02659d558b7a8c2f5ad3c0d1af393ceee3c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0118/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71a80a1f6bad137a067b980857ea86b92cf84d25 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0119/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a8632d8afc458e64992defddc1a0852e57e9347f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0120/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0e86325bfa72743a620f30637c8b1831a18f372 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0121/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 585ac4aa969f2310958cc71d8f3618c2918069d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0122/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 200f41c1d25ae5c145e5ec2708f72a8544ea1459 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0123/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5afc338464de6a19c36213be959e53ac659b20b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0124/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db51d7b0093067151585a3e1b9c7fadc2ebd2c8a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0125/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15627c9931e612f2d5188d5b1b6ac8fce1c8a0cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0126/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d3bcccba66b73cccf3ce27b5207b4b817a7481e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0127/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b5ba00880ebb1c53f6bcc71313c9b62d0c76c49a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0128/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e8ab967443d95dc42760cd2d8385f2d3c51091cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0129/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cd49c2950e1e8293ecf2f69f59baecc438775c2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0130/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15c3ee77541066515f1dcca60098190751f64d03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0131/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd311b53960cd2a99c90e91ef7fe7973a10723a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0132/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de51da59303de12543e227fc1cf6056dd580e25f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0133/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 416bd3b2a4187307bd02f4755fa2fe54ef6db7f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0134/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 77fe365c581cfa8c952ce4d27e4688ab071f848b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0135/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 073f09b8188f460d39f69ebd79fd5e6803161a39 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0136/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5ee95f49e8c24cd45072ae834938e0509e7ef81 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0137/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4a3d46031e11e020c9022aa12047a4f44fb09184 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0138/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a22cdf7abc1e7f7a35d8c24368fa7ed572419fb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0139/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 146aa9768fe209f0eb39654e37513b01f1d51fb7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0140/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e21e6ee1cd66e06093ff386c7022e3b564b996a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0141/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2687bcd688d9b4ec2146c1145c1ab80699d77090 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0142/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 47028990ae41894ead784b1b712b8a7d6ed3bcb8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0143/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2363c40c8700b7851fa61d1fe146e9ccaa932481 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0144/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94b0f0ae11763482f900fa707e6218740673d18d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0145/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d26b11c055f76f7eaac1328bc087c1a8bf69ea1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0146/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5f10628e190fd9db752bb5c619c76a9ec70fce3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0147/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f721cfa62b5fc2b430516300650d893dbc3c971 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0148/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 31c3861c792f4039a835bbb090795d0b564a690b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0149/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From edb20e3faed2142f1e3a6a3573a274599682acdd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0150/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a91facec0549c2c7db6b2b705ea8351ba0ccfddf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0151/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8652094bf074dc4a903dfb05967b3ad1be83aa35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0152/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a2702dd970b01b8d844c392340b5443cd53ab77f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0153/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fa7a808c28bce7f79d73c8071df48b60ce9a35ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0154/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50f51ab031adffceb28e4ef4dc1c482eeddb4acc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0155/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 49ce046a23dcfde3956280f148f96a954e185585 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0156/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 249d518aaf4c88a20c84666f8ece0b11b1a228e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0157/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1975d86d1ac8d315bb77c423bb838507aea004ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0158/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 407e5ea0f82aac517439e21617c336e8947e0472 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0159/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a1fedf8451e14f201539a07bb51d8b8dbfa0fe3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0160/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6cfb70dc89d43ace6ebf05c20c8704a2ee7808fc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0161/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7691ae9b430091de410e681e96e35b034ac2b419 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0162/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e95ac3c41960f25e76646476bf33c19203384265 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0163/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24f897c02d6f0fba044040e5fb01975a18b16c1d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0164/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e619a2100ceaefdbeab295a0049258bfa3cfa081 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0165/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 27bf0d432763d4eac5330eb61d8929db6e921cf2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0166/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d466750e94422e219089686fdeffece39410e372 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0167/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b9354606f481e04e97708e7efe2f9e5aff0f558 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 0168/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From 0b53ace9810b5a3d62ee370742e7c511187096f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 0169/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From 12dac566f8dead7cabd3ab5b0562a1929bc2f22e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 23:59:34 +0300 Subject: [PATCH 0170/2596] update --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 754d415..5994556 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ +/build-win-cuda/ tests/test_files/ From 87a7868e8f754e02f1eeda48734bb6799dd96417 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:00:00 +0300 Subject: [PATCH 0171/2596] refactor: cuda convo kernel --- src/filters/ConvolutionCUDA.cu | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 7a3471d..e08cba6 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,30 @@ +#include +#include + #include -__global__ +__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize) { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + +} From 790a629fd19e10b85a66b2d1510f3489f0658f5e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0172/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From cf2fe447e019717ed57ce455f4116937d3725f6f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0173/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0a7db1834e07ecbbc445c3bd43f4ad9e23093241 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0174/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc242437c9c1b0349c0a607c465a9b2059f832ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0175/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 340617e4828c380ab5dbf5e14370cea20bfa80a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0176/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ac874783eabdc3cf2b8b53ee67c57de3931e761 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0177/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59542a014727fc1dfe787d5b409501a121ce6f7c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0178/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 006835f9d8f9d270b567ce76da0d696aa485d4f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0179/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 14afc95f6bae67365f4c75a8b951f18bc5f2549a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0180/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 114a72e410818d845379c05d82e0631352c11ee1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0181/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6928d4351546bf33e151da10f8b52f809171215 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0182/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eda4279d4f919e8aa2d31e5bf959bc88dae7a976 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0183/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0faccd6b224261c82ce4541590eef43eea7c5ff0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0184/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5a20513f428b93a901222e1a14731e0549ff5ee2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0185/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae604f784e70181f249772f2f32a197cdd408b41 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0186/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dc0ad0bb7bbdccc37d3f773809dad650e02a22f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0187/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b8241a5ac18730b169ea801670fc0376bb7eed06 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0188/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 426c415f3cbb1631d84488cd2c1de1af4b3da991 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0189/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3b32d82c853eac590121eadc15d9defa5761e7ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0190/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f18c82f2a157837a30fb5d4bf75c88d5f766bda Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0191/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34e6d484337929ff8e2ac763954519a1416ae686 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0192/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7705424dd68b6476187fad532fd22bb31569d0a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0193/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 70e7193612a43e5166ea28da90b57a9958fd5e03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0194/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebace6f1f08a0c8c8f3ceaa4d8158b6a8be82e91 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0195/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 25dec7ddf2794a760fba7fea5cb54a5f3824ec38 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0196/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d92610ccf212878203525595dfda20dd265a4fab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0197/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 502c20ff8829d4bd424a08d9b8df20d41da6cec2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0198/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dd1854ae7d4db573a0274474cdd6d9a58d3bc77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0199/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c787eface8bc021ed7cfd51d16a115049d3bace6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0200/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e8d6c4a71a25ea5025159bf8428e5e780fbc2be7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0201/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 14ad9b155f580c274918db38f5a598f5584daaef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0202/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 000702ed71bf235900c606d723c967ece5a26772 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0203/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa2108b509a37178971f29608bf9785f16c3857a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0204/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d32083b6beaee2190960d8373b75d75fcc690f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0205/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1c3adbce43e01e525ed1286058c5b8f4feb34b5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0206/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd23092f12e71f780f3d992b5f648bd28ca9a369 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0207/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94ee47773168f8b6354c1d34095aca853588f022 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0208/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c71d034f91ed7962945d16001d131851b1a7fe16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0209/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4a96853f8e656b0df1adc5934175a712c3d1dd62 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0210/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e207c700cbbce35fe5858025fd33a29bdff8da7b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0211/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0d16a7c629b8f340901627ac28d9e61d8893fb0e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0212/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c36b1ed3b8991612c5730ea59cc5794f8ed7d481 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0213/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From da7726288c26a33cc4c95a0859f7ca559b9d0da2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0214/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c39f6352aed3b36acd5596352172b177ec404f6f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0215/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2cd66c0ec039f4e0c7744f1d004a437004f4554b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0216/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c78d9378fb57233dac321c0b1655ba726dcc718c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0217/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ffc0af83166489a3d33424a659e34dde3bebc2fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0218/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7900bc05626d2702a185598bb5c1713778f06408 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0219/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43fdb8a4814041a9fc8f829c231dc2006b960864 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0220/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 299551c55ab57fbc7f81b8965d5e6ffbe6889ad1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0221/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 84bbd80ede9711c45b2e6c8efef25225d0da821b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0222/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ad0bb29daa294064ab0e01470d023105d080b83 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0223/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e998140d9a084aaaed4d0634b4cc079192f8d2f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0224/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 152217eee710b3321fbf7ea58d14a06363be4cac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0225/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e1753e57cda9a0c2b7881ab1b6727549ac4df47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0226/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4f13b7e497d971f47ad14adb8291cd4eca72b233 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0227/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e3064528c8d96fcefd335bf85b89aab71199258a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0228/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5658dd9724fe9660aa09810a4ad62e4f99c01aa2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0229/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dfaf09de145686d97b294724b7233573b12b4269 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0230/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b056e7ea74d12cf5225ac161aab67bf75dd90374 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0231/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c37aa55a719e6edba236e6b7a5571450f092d46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0232/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d93c23b937d14ba637d7177b8c9c8cb9daa726b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0233/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b827d55fa2797b954b99d197364bbe4b44823728 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0234/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 77fc4a3aa24dd0a52ea3a7f2ba6bf54a73c09f10 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0235/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 566682305758a34e1a305b07a65e25f3b0800596 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0236/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 156f77347ddefeae7dd1e4c8343d1e3beaa3397a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0237/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7afacc8957a8ae5192b4bb3ec130023fce817df1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0238/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3010888770c4ebe789ee7808932ec08dbd01c98e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0239/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 779485aadfa9c92ec6b326d9e8fbd6f48db00e07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0240/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93a0a824f4ca25f1885dda72d94df88fc6d531a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0241/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 05874f22539aa41e90ec98b428e81b5ea7772dec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0242/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13196cd4a20923da0790caa00a32092ea60d126a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0243/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d2586a95f5e3fa535a72324f166286be1a5ae3d5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0244/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6e8bc5889c4365e7e0a6ddc6ccdffc534da82f20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0245/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f60d4fed2154d2d2bdaa0d06d22d64a081a1e1ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0246/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5bd69a1a30cbc890d26c9fc39daae41a658ffa22 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0247/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9394ed01fd61c329e714d48f57d8835085b308f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0248/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a304d202ca7428cb03ddec741329a286a1618eb0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0249/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c0a5b28b3b26204e9ebb3de2c62f67f476a21e85 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0250/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From af0f2382f86cd852cd23f0781a22fc601cda2aea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0251/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5c18e23632288c643adc291c73b2ed04134e6bab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0252/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2421a66c3e9b047b25db4fe3758f13418cdcd86d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0253/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 04c61b7e7010cacf5dc51950b1604452b4d71204 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 0254/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From 4a8accfa22458e6e29b90fffd8e93788533080ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 0255/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From 5970bc0928930db72d74dbc05cdbc337afb8e991 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0256/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ec26d757ed5aaf0098665b5e01d3516c1e4a96a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0257/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 19ee4a5b0175d6fb99d66785d2c0cd1d096f73b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0258/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 489d36527e6726c66533684282593c54ebf84e52 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0259/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 066eeb67b0972417cc2f8cc9389671a91f7f1d16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0260/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71d0cd86932f2323e28b25c69c16b2346c70f1b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0261/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aeaa4340015e42df594b9f6e88d2c32990951d51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0262/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 081d2ec971d8d9358900d6a3855e70a7e85166b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0263/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1d663d5151b2a255315baf0b95ff8d281952c169 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0264/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 445346ce7362fc16825a8eea17fb282dbbc5cdb6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0265/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 23fe4734752a4a142e831b715f8119269886856b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0266/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e36df8a54d81146b98bd61f528a81d86005ac59e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0267/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d64da12bc98a6dfca1090fcd8195e8f4342b66d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0268/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0db5cd3c243af946f3e52499eb6696e219253ccb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0269/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f8c00f198ff610d9b74f20479e0bc792af4a5c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0270/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f8538587ea0dbda27d986029ad0333dbcedeb9d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0271/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83ed1c5f936c880c614e8ad442db8f77b0e007ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0272/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebe9e36ed716f138f8e884c21f08bad635b565c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0273/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8cfe970a7eaef8708d02b9a4f429a235d55feaa5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0274/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87a7bc038a142dc8cd0aa75b86207331d5b5bc20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0275/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3b9ad63ae24308b27bcd3a76f8c598aad97cd09f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0276/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 09bb6a744b8c57dbf50889bcd88757673d0e8190 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0277/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 02ab46cc28a4d5574881286acda8140ecc490ae6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0278/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d64c1e946ec6aec3e7b2bf39119f522d1d5bfa58 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0279/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bce9abca2c4e559a30b91e40e2e51cfd72a847d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0280/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b7976adc7c8b3e957dc160dc3ea3331a9bef97d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0281/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d730fb2647fccc2eade2b85c7d6f46b4b2536bef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0282/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96b6ad7b882b194f8be7e88cfe4c487d3f1d20d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0283/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd5c90709ac9429bd79f665573b193c159c5d368 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0284/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 98b3f91dc17c08720f2d8e1c32d654b7e1c1047f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0285/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4795d9f7714ce2ee29da8cde32be74f41e8c933e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0286/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e28698183a04134431f38d3d4a7f78f78e0788a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0287/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 27e381f7a9a6194d758bf7b50675c8182130d2a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0288/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e22b63df790bb149ed6b20ab6780b32264722a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0289/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50e95079418a69d985ed664b15799970b0b8aab4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0290/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2a2b1c6c7ffd4edeafaaafcc24816563a61599b9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0291/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cd0419428c58f9142c60689f466c487bd887ebb7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0292/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9edbc99d69000c93096e170978cb3d01391e3f34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0293/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a2d905c7eb451a97731dc9a7ac7963bb105f94a2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0294/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 80e52cbd6dbc4ad2927ceb15e0ffea866a683e7e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0295/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9b6c6b4278f2e0aee64c8c2167fcbe704c89bf89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0296/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82a46d67f28edd43890fd8cd82403b3a70040324 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0297/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3d32e88458f9cfbb684e75471355608dc19fe6e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0298/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 109dc03006ec2225f21e710cfe5e4e3b215c0d16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0299/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3b3901aa44854eb80ed7feb664f2d65057138b21 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0300/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 214f416a9e5eb0e6ddb2f612cbd4015de7604337 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0301/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e82e746288763c5cf19c1fc2d634c53762d4da41 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0302/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6d0cd9385f9128819b9baad1da774f1400ff635a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0303/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be7459fadb50da99c027898994febd7256dfd8f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0304/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 407dd5001948843569d2d4ccc817b9b912f858d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0305/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e203c74167087c5ce05ea581ef661282c8f8815d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0306/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f41b03918a6f717140622356386f87d4f9864a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0307/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 035e0968dab4974403bcb6ef7d4cf57c98360912 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0308/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f33b203f3af18d4b07280140397a56fed4238b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0309/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91b30635779caee5f06840cfa35b1b20e2fdd396 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0310/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83f41a4434ef3be26ef28b9c9bec54b08d708520 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0311/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e7fca3eb02d21b72980c2ab249f1019d41152728 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0312/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ba5ecd3b6d3dff64b09f776ba42aa5740c5ffb1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0313/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f225c149c84c2f3b5cf5dce78a5081feeb630fbd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0314/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4e7c1bdfb0d737d62aeada0de5c7170da5d07803 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0315/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0b659b8abd513ff5b957db5fb9faee9cf6c422f4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0316/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d238762f2747a65ce7d956c7806a1b82a8ec3035 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0317/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0df6eafaf4507f11b5c29e2225199a1dad57c82 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0318/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82eb559f02b3ba427e11284d2159b3b8ea745189 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0319/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63a55bb248c55bdd7eb9026e8dba76716b8441ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0320/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 39a25681f0e59794f29849d90ffd7fd0a53985d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0321/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7842cade950eb99352ef261e82a873598161ed8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0322/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4822689f3b7363abfbe9fda5440048161a41a3c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0323/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4117708ccd6d13c0698ff74f1583b4c70ad481fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0324/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac18f6743eb82df0c2367ca9ff1cdc6fc6815497 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0325/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88f2af2dcb164cf31afa5e6b733d478a2f388ee6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0326/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 47912125fe4727ad7724d4ef11353b008e04388d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0327/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab9efa50fe567198ba6539971d6985491b904ef7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0328/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6bed02a6360e5f39918a98b2e4c70571e58f12e3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0329/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3769ab47dffc1712bfc8b545a1861a569361aea2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0330/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f90ec4e29e84f1b57ddb64e96f618f709aea2bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0331/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1a37112eadad7330fa885f23608152bd1410bde Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0332/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26990a568293398ed13925b81944db8f388b9465 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0333/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5bca30889aa209fd596b37f4af0a681ff3e5a50a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0334/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c25e35bd714ee270c059304d841b6d9975be7673 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0335/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d3bce036176c9ea8dca27779fcbb216c0261c2d0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0336/2596] Update --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754d415..8bcb3e3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ - +/build-win-cuda/ tests/test_files/ CTestTestfile.cmake From f987a82ab599b61d9dae20bcd5a8733d5571b5b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:00:00 +0300 Subject: [PATCH 0337/2596] refactor: cuda convo kernel --- src/filters/ConvolutionCUDA.cu | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 7a3471d..e08cba6 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,30 @@ +#include +#include + #include -__global__ +__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize) { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + +} From 53c2fa8241c703272d791934b87c1141d50a9f5e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:10:47 +0300 Subject: [PATCH 0338/2596] update convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index e08cba6..dfa223a 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,5 +1,6 @@ #include #include +#include #include @@ -20,7 +21,7 @@ __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, for(int ky = -offset; ky <= offset; ++ky) for(int kx = -offset; kx <= offset; ++kx) { - int px = std::clamp(to_int(x) + kx, 0, width - 1); + int px = clampf(to_int(x) + kx, 0, width - 1); int py = std::clamp(to_int(y) + ky, 0, height - 1); sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); } From b4a9c77a17a6f9be4476a29c6ad1af96c99c4055 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:32:26 +0300 Subject: [PATCH 0339/2596] update convolutiuoncuda --- src/filters/ConvolutionCUDA.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index dfa223a..2b1151a 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -22,7 +22,7 @@ __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, for(int kx = -offset; kx <= offset; ++kx) { int px = clampf(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); + int py = clampf(to_int(y) + ky, 0, height - 1); sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); } sum = blendPixels(orig, sum, m_strength, m_filterAlpha); From a7b1be68660ea1668079e98f99725ba32a552bb9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0340/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From 6c60c95842b8da7704b83a13a0b0d8999af8402b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0341/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72b305bfa08f1248d82a5f97db2b31ad442aa4bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0342/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2714e29fc8dbb3b8e244aa3f80e6ddbc822913f2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0343/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f21cf8cffac0dc43c0203af9dfd28eec1c6ddd54 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0344/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ca64cbfff50dc4fe5bd52387eb15804387efd97 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0345/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 62ea347e7a66b45745aaf6e9c1803ef7e774d985 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0346/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ab6e6758fee55ca09180fdbab75ce2ec1b399bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0347/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e2fa8949b3e476999134fbd09b9e73b8a2567237 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0348/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9628d212a55ce2e453e2c1631de0122711faafb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0349/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e31088a94a1423defb7c7606a4d9317510c13f35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0350/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6daa7eb9528c75683b4f96833607cd8528e3dc83 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0351/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e2d6a6617f6c3c707caddf453fdb91cc2137c70c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0352/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d0600abfb10c714ad8aa94cfa84611c69d4d890 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0353/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cff06854cec52d27e454e9d50551bedbc425207a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0354/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2aacb79d4a46df61e7fbfbe5e8bd55f26931251c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0355/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0fd55a20057d876e81ba2f0b3e3116d4134524e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0356/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 98a41c7fc66df46c1c4b80d6ab7a6ffae765d01e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0357/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d304c7e6aa8288978e30c243a2c6f12012bda53 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0358/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 52474c917a5a8c3506e5d7d3abc1ade984130e1c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0359/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f61afc0e3ab2660ba14d854ba74bfc2fba0b4e5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0360/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5cfab55a386c056548606a9967db573384d19505 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0361/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 11f220507230b5f94f5320718a72637ddaab1077 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0362/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3351945e159c0fe04ec9c9ce614522837825674e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0363/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4dd2679d7a0bc2a71143e7045b178bffceff43f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0364/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 349a0504dd7a1ba827c469973a833aab9a4c5f90 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0365/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e9903f455ae104af60dd9a9d3db5a99d2b546ec4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0366/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6bc27d9bdc614d030dabaf9057b68c134c9e67cc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0367/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 146750eebf57a97e72479179971c8a752bdeae0d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0368/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88b742b7fe6605be830c77b612ed3cdac736f6fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0369/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b82ec3f18e1e9c1e146ec43d8ad2653e7dd86c3e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0370/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf1eda2d02bca95d57ac784f4d53480acb7bc61e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0371/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71e358da5a3596d0db3c27288757711b77d5e3d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0372/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d64d926bc4ceebcc16e0864f0f04c0fa9bb2a21 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0373/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb22cb6db5a894060be00bf2e481a4f3cd4b0759 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0374/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7470a49c12eaf7026e53eed0f0a93ab75740c7d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0375/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64ef5ef577924ccb8cec46fbe01e6d05763da34f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0376/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e55962cb9c047b3d82807ff7f87852d14dc3ea35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0377/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bfe0b88c23fef5f95abef838362f9cd90e68c254 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0378/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f04b58294691940efc0c2bffaccb123584494747 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0379/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f3f62f5d1fdaa34fb4a2c98508b5fb6f95ea4e93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0380/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9122f2f7d9ffeace7e5d8e61d52946e0b698f946 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0381/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6df2c22cc21d714e2c8fc2c94cb80a6ce35c06db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0382/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5103130108c1c252e524c2122210e4519f1393ba Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0383/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 128405c0b565da1f32cc1f2ac2eec1bd65aa0489 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0384/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54dad15f7cc0c0d3abb4535c1eb6553d832739f2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0385/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2076cf5c3967e4bcf020b4a6928e31c85e77b60a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0386/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b60f4314f9baf2a2b0463715084b05239debcbd0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0387/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ed63e986a54c006e54fc67b64e3c7ea7d8009f63 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0388/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3cb2d7b0cad0dba0a9ffb4f135b16854e48c4dfb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0389/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From acf99346d263fd9cc17ba5f4c848c0d988f305d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0390/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b900742cd600d8197b065166a1fdaf4a556b252c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0391/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81fa30549f3e057dfccaabfb9ba84c3e93c8fc7d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0392/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d93905b2e813f49b418eb68900639f9c723833e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0393/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From af112f5542fd3dfe859df6ca05a28e71b73983d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0394/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 263345b5b23fc091b54c6b211528db0a62666ad0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0395/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bcc38ce32b590b8af13d70eb1e2c8e9a917c99ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0396/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54f35ef6dd21092ef979f671ab3b2ec0317b10b5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0397/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ac9106297947c1d36566355fb62b1c081f79357 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0398/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 17f6e2170b952cff54033fb8d85fb416a36b220b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0399/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d3b394cdd5ebdc985dce159a5116ef4385700d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0400/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 812736a878b9ae9d93ebe4d44907ad239f8078c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0401/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ef4fbc75e48fb12d802d8b03b97829921e913714 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0402/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96144bb89a0d5a40b2ee2ac55c11240d5a0a5a3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0403/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2cefeaa0cb7e81ba41ac719e503f8611458edb88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0404/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bea56ada6c2714e1d1a838bd2d37200754f82fb6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0405/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9cdccdb06ad9f2b42a6314017510305ad51139d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0406/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ced31ed810009a0588b21d5a89fd2d546cd10023 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0407/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8c28c2b906c8c472efe6639b58f9813346dd78ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0408/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28df943fc29a844acae3073d79dadd2d9cfd1697 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0409/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7bc4df13356375e367892a2ea2dcbec668d653e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0410/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 882ddce0d4d5f3a21392fd3ee4d20a0a26aa04c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0411/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dde2fbca575104f2c1766948ed7d533742bb946 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0412/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 192b534d3fdfced4c42263556e05528e90254bbf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0413/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51fb0a509ec8f8fe3b8e82b3705773a41984d107 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0414/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a172309f4a921e76a9e6e7daac14eb385740a81e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0415/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1bb55398cf03478a24d87967cb876c3d79e904d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0416/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a8b6c3c4b0dcff6959fdb077eb27ceaaab50fae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0417/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ad187543ae5a3bab00f6e8c1ac4a1874122c669 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0418/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b3d89b03547b4c5ed982b954a6ad61c5ae6c85ae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0419/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 410dbc01c336d2bf7a521b20ba01f60332d8c3d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0420/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..6475846 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 464ef7072641cb95df145e288684a282490359de Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0421/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6475846..4fea43b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd9ed05af9187f7b61d3e8e0fdd605f1fed2268b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 0422/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fea43b..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From 353472736e37f995dcc377bcde62f7cd08fb9da5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 0423/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From 78fbd1cd76bf7e6910f4470a2ef024ec0550fbdf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0424/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db462b977cb756e2a5455cdc4a7f582d521ba17c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0425/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b8882d0ab4dd88f478ae6912d19650994992f0a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0426/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a47f9902eaa318cc0f66c1059c8e326f5efbf0a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0427/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 78984255562f2b35621b095ba057e75ffeeb29db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0428/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f706dfbb7b79bc6f8236e0f33e50c7c9d2a29a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0429/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ca5e511ae7dcf5f79d63332bb9292d3e4c88d3c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0430/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4428c8871ff8f7a172ab9b7477286d4129adbbcc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0431/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1075b485fe990bbdf9ac26daef50172cfda7bc2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0432/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0088508f5787142afd5223c048797128f5b7b41 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0433/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 500992d22b83b2ab1200a5f7528ebcc41229507b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0434/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 410660ce29aa220ed329d83e4296dc3c05903918 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0435/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 957f6c428b859fe67657b954c4d88dff5f2ca3aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0436/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0325fa4b2625ba886fd98e885f1b677e690fd827 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0437/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dcdea0515f5e5cb0571e44de32ea0867bdde79f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0438/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 147267a0f1fb1319a8d60a8998dd8084e30467b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0439/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 437beadc21e3900c01cc11d6c2d3f51fad35fe97 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0440/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e113229178224081d71156e20a0acc0d0718831c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0441/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf13b13835323b25e9f503068d5034653fbeb3a2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0442/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e7fc62e36496e2ccb9432844e1adffcde2f04526 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0443/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebd096888cbbef597883144e294fd02b21ca2ee2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0444/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81e80f47106feba92852a9ce0350e73defc7a176 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0445/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8e11fad3fd26cb382f58b34cf032ff2975d45ecb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0446/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6f26c69b6eda5d13b7f12e85fc4295bab2fd6ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0447/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3da0156da6867882cfd839274094f6b1d6f6389c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0448/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e4cfbe44d5eb1e9679aff1287af41d12ec4787e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0449/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95940ed7f072643fd8e09f4ef4c8e856f23f5328 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0450/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9b7772061f7d095464b7f4ec2ea9f36650d96dfc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0451/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1df0316cf79fa66bfc06f3c398ec395508566db1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0452/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8882f256cfd3142f39ff8e83170de5f2228ee25f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0453/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f0b5c819ff389bcb752d18a1be5d3c5ada0f5bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0454/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aeb9f550ec6ee417a53f98279a2c87e73e66d148 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0455/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4dc0b94d53dc5e9144ca41d8c389a72a37af592 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0456/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f9f3bfdf44b3ee0446acf9f2b17e8b4085aeb76 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0457/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c3f610efeef36561f6c07c8d2328cbcaed960d7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0458/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2399ab9f728ae4080773f7d1de7e7660740689bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0459/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9dbd39f8a02abd33abba56845dc6ebcd98bf92be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0460/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e21cf7ce6b2585d48e1e9fa5233ad6596610ea0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0461/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f096f6a7c7b250094bb2c1b1ba75e600a5e90618 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0462/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c078302b9e8c2214c9fae85f02c61ab2563c199 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0463/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6549827ab7c4a53d66400648b4b5c073c27fd875 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0464/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55fa2dba91e983292a0d2b628b3940f796bd0f10 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0465/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1cc13e355b80f11cd22f33f615eb201d8e1b061c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0466/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 784537a75e9f24a7980ac454a89030f60d430e3a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0467/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 547ec5c2d1627453c32aee7d96f2d22fa0a78e88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0468/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4450191c4234b49b3ad47ed846ac421ddc9301fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0469/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dc9569ef0cb4039ca5150c454207eaa8f7b2f77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0470/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e93891a36dac667af8f76e2c6a1a6d792eea370 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0471/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f8992d836af224020c1773c3af45854b8e8465c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0472/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 05b8e58b38ab40a13fc1e097400510ee997c6193 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0473/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a8519bc099ee0a5e2daf79dcefd02702868fa27 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0474/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dbe375588fe5fc70836e9c1f10465b450f9dce71 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0475/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ea033c0ffe6753853c4e9e2adee16ced0c0a28b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0476/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6d10a3aa649a66b8afd1f2791803b6ed975fef17 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0477/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b311cb73df514ce706f7e8a54caa8c61f463215 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0478/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0a6bc9b8264c9bceb61dd8515989f8b1b26291a2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0479/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2fb035ea9eb8f23b305a6ef15d04d68e286ab390 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0480/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dedd81f8758097e7b0faf7577ca1db27c2f1c00c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0481/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fa2a2f7cb13d1fa85e2266edb4ca6a7f7b40cbcd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0482/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca958a8e95e94e624bf0064b03e9c4bbcded6a58 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0483/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From df25cad909721474fe0ba9b53f9744f899f20b92 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0484/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72ab8c450a54abd144d64ca39565691ad69d4cd3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0485/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db4da0ef02ebe2cb5c473a64bb6dcfc48ffb03ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0486/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4b1732b0867a3ef3310bef9cd613ec2475ecc0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0487/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51920b8e8cb183f5f45919a96b4823a653482dd6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0488/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b72496e352dfd5f884d0a713acf60295794e9636 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0489/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6e7cb66e052e8d2e0a5b977417e4d119e1cb0c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0490/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b7973fd8efa27f37ced7bd42d245ae04f387f8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0491/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d931d9bf810afd83e0d9deeb26a0754e33daeada Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0492/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a13b7b576a0027b161e41c586f2c1b0e2ad26bf8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0493/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d77a3a8d3c0ca395b85e7956f2104217426feab2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0494/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6743d15e7190f232462350bae1f65fbd5e2f6624 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0495/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f5b9ff88e10e075bf5c535a646e66de835840a09 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0496/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2b107b87aee34034375ca956c6a899689222370b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0497/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebbc4a36c9751f2a24e9ef1788b7535e67e69335 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0498/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64b94f470d74d90cea440ccc42845f3f77dded0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0499/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a697210a596549d5fa3b83c28477acc9d0c17a0c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0500/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 284074dfd9f678c712cf9fdf0026b974a5d7fb5e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0501/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 942004fc2533ab182a060650276e9191ec394ce2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0502/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 784c9010a3f5c88bf4848d2089507d911b0095ea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0503/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a35ab4353d0a784e46d556917657aa286d15e29d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0504/2596] Update --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754d415..8bcb3e3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ - +/build-win-cuda/ tests/test_files/ CTestTestfile.cmake From e7b1803e97c5f3c4528d92ab5ae94bd7778481b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:00:00 +0300 Subject: [PATCH 0505/2596] refactor: cuda convo kernel --- src/filters/ConvolutionCUDA.cu | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 7a3471d..e08cba6 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,30 @@ +#include +#include + #include -__global__ +__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize) { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + +} From f6f407930923f9eb13aa97f157294a66aa7bdea2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0506/2596] Update --- CMakeLists.txt | 24 ++++++++-------- src/filters/ConvolutionCUDA.cu | 52 +++++++++++++++++++--------------- 2 files changed, 41 insertions(+), 35 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index e08cba6..9b18f9b 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -3,28 +3,34 @@ #include -__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize) { - int x = blockIdx.x * blockDim.x + threadIdx.x; - int y = blockIdx.y * blockDim.y + threadIdx.y; - int s = blockIdx.z; +namespace dmxdenoiser +{ - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; - int frame = frames[frameIdx]; - int layer = layers[layerIdx]; - int offset = kernelSize/2; + __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha) + { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = std::clamp(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); - sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, m_strength, m_filterAlpha); - output.at(to_int(x), to_int(y), frame, layer) = sum; - -} + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = clampf(to_int(x) + kx, 0, in.width - 1); + int py = clampf(to_int(y) + ky, 0, in.height - 1); + sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, strength, filterAlpha); + out.at(x, y, frame, layer) = sum; + + } + +} // namespace dmxdenoiser From c38bfd5d365cd0279ddcbcaf469a6ca11607d0c2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0507/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3514802d88c0103264ce7e51d81f33ca18950be3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0508/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 85ab9d1e4afd8106f375cb6a8a19386afd21680d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0509/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ee65586c99147833c058f1ec732c8a331b32dc70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0510/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28755caadffb5655989eb781aa93d5f10f6b3940 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0511/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f49face729f8b1aef8131d458340065cfe642048 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0512/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55e5c4f082a98ceb7acffe5cba2a8d8716bc1dff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0513/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f98579a01aa13ebae1ed493f6d61dfc906835859 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0514/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aea77c82443f838aca8e94c0e9d5e621cf65dedb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0515/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5732c09b4800980fbaa5646024c5b585baf1b539 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0516/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b8dc83ed747b2f5070dab411f73c59c483864f37 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0517/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bcb5add57753874dcb8e94c4bd50a9b547b1717b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0518/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab8a9e448e97358de2107239de6bce23d41b2dd7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0519/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4f2ad3942fa1227d1e6468d1321da7a7c7169687 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0520/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c8d7f6344871a0f52da06e0676da001e73c37984 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0521/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8eafab23c536e916f8bdb7eb4bc77140fef32ebe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0522/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3fa9a6104a258a713fd27205b05e65c3cfb83965 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0523/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e91a7cfbf473d9838353c2e725bda2f09e592df4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0524/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4515d329d5112c4098954348348be23b3dc8d18 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0525/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 258a3868f5422f5b51643afb5a872ed9b9b98fd6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0526/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5223612d663cdb8dc12809564e4e1dbf5a724863 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0527/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ed31d04ba881afff0bc0ecbd0da42c7c08b1d6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0528/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8a784a9a30b72988e429bff40852de7b892c8379 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0529/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81bb5776700d9d6d1e774db80a39d212c0e42016 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0530/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81af321338d6aa189542d5397e6eb89e7f44fd13 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0531/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bbf7984bdedd34f34eef55260bdacc3ac30f5fa7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0532/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc012007f72853f07f5954922c08686669882f45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0533/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5af01346d6fe247cd0bae2294c292796884ff58 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0534/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38ec5f0ab561e794f9e4882868fc7261aba671d0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0535/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a9fcce868f648bfb3d853bf218ed5594ade6e40c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0536/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ca339fbe4588bd288c46a1105293eca0a7c09ea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0537/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ffb9d845f1207bf0b530e3b6503c7ba050791b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0538/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bdc2c66801126f3159f285f22f21e60bca38c22a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0539/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2486747d37b35394713e3a18adbed8c65b4de425 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0540/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd92089a5f3057f106786feecd2a49812dbafe6c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0541/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3dc5c1e53a7c16590f8ee8e6fed0da89506592cb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0542/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a6d20d7214adf85b0b146ce873f361c9afa9ebb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0543/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b3c94f1c92ee23375811be2e84f4a5471e3e4467 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0544/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 485173beb74afb994989a4c943d0166ec9af6da6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0545/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 61785fb6fb51288758a2b5e4b920a5758b5362e1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0546/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 293fceb2c8c335cc732c65c28e8cb57011f312fe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0547/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 425c722c9840ec8ad9a38957d013b918fd514e46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0548/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 331ed935f254bc50db08266b090be4c420fcd398 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0549/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6d764396c00a54b54672060820f4e5e91b40fcf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0550/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be6b8df872d03a27c5a66dbd9a13a69df0b84f9f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0551/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f86943772087237af973f26d8795af6234d968f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0552/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c3a26dc8b6d58f5f986af14514963c8978da2c8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0553/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99fb0dc413ee391745cf6a199b862cc53086f9f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0554/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 05db110f7ed746fc9423a7cca892ed16cf511f0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0555/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66f036f4cb6ffddda1e6de30ce6fcb2898385483 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0556/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6590c122698e898127181ca7c3eb1a02c4baa223 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0557/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5153bf9565e08b4c8142b63b83e344dc063f7232 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0558/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 686597dcffa9290db68344555015dffdee2a3f4d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0559/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8bf2eb03d6cc49606a54798ad8b313171395ac73 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0560/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6be3da6ab4a3e85814016445bef15da85cc5bc11 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0561/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bd69b014c237b58de81012cc18b92afb1ed4e34d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0562/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de10034f0eafde1f419daf6f897edc003f1931b1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0563/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ccdc222e71354e9d9fee5c095398535d360a16d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0564/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cb255ea1c978d3bb52aa8fdcce419846d1905ed4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0565/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0181c44dc2a9801e73c5c5b9ff90cc1db7f87e81 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0566/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6af0fb5fa2a4b3489240f95622b9fcb6fe402d68 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0567/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 397997b29561b18cc67cf5e5f8a769b490eb5776 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0568/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c906195bea8a034c441f8e7c4786d517c1109ff0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0569/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8a033eaf5bce28e76c43d30a1da5464fa103e60f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0570/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9c017b337cfe238c9ed6e771c02b6b25968cda4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0571/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2b8e47a8aa91aeaec7b7bbef84067127b12e2e56 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0572/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66bf0a1bcd0b55195a1d9aa1b87bd05148d1dfae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0573/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 812c51efb8ea148f92fa59f5e5b1d4c54833730f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0574/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58381b8e1f505a8bffc82699f6e9680c72dc848c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0575/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 334ee2da9e9a6dbe95a8b799b2be6502b7554da8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0576/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 697b5bad3650c53483380b9d3508f8e01653d371 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0577/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 156c9d421c95def1317ffe667ede00ceb808c5ae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0578/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89f86f69b88a1dbc030bc3ed779edf233f3dba30 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0579/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a9cf2f8289d7c7e3cb0ddbb535246e2d46e7155a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0580/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 25d27262f468569bdb2eb8239fe7187c6583f256 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0581/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e66767306d4ebd39b6c7c4792a6a927d0c2be8fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0582/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From deb689507d9be4a047ef8c425bb37887f12038d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0583/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f5964fcaed08d3fba299d749317c61137e52e14b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0584/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73f5e13a4c2a6297f5254dbb0847905da79992cd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0585/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d996dac3c352b67f8b1700e6d6947284a4b76b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0586/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c53baadabf7a83d7f63e4868376fd65674bd2db0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0587/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 17d3238532f6d69a5e5438f2fb48b3366022fa33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0588/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 040176e2489f57ab4f7b6e22b7beafc81b0531f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0589/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2790351849e53dba78daf32389a800dc92fa8b6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0590/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 591e8c33909be3e40b2dae7de129a73961c6bbcb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0591/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 39b5ed717b834951f0c975dd3a65a5718c3529b9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0592/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd93210fb2c868b31e824453e33208194f88a07c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0593/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55db3c7a6e7abd4295232db9d1312da1a03f0f99 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0594/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a125d3cd54f6a8a65464ea88d9c7dc861733cdb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0595/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6216ab938c03a784e6b8e4fb1ced841d6afef38d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0596/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a838f9f9cc38212109d25e7e3eb03c2cac94c2b5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0597/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8cd5aa6f3302134f6f0f01163912fc5ad6ce0949 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0598/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 783ad8525426278b64b9c9ee3d5466e661e58d76 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0599/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63f82797938818bd49259857d49212f3e52b1531 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0600/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7f695ebef97ff5bdaa4ca1405fe4562854209b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0601/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f13fbd61f8839d91cd0b4e35b2fdf4fbd9b4d099 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0602/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 848600b9b0edb8a59f0950d354707813cf002aae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0603/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a2bef320d568489c00a6fdfc02acf620604cbd9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0604/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3318868a9f5ceb26fe1fbdc7f9e027af3c6d26a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0605/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d252ee6b8290fccec06e3bf56537c4d120f60333 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0606/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c2a42b9383bde4cfe4a390c2d7e81f9b155056f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0607/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ae78201efa42fbb87150db58bc25d68d66c8899 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0608/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8cdaa1ae1c90d0f190d4bd09bad2d4658b0568d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0609/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6680f5cea5c19b311582adf8e000e4ec1aaf6418 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0610/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 039eacc9edfd640156634d32be3c4d9e7345e919 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0611/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ee627b51d7d6b66c9d68695bb48fc097eed77140 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0612/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 06c50597e6956eb6555deb054ba8e5435d8d4f76 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0613/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ee8a2a5dcbc847e0a26e47c5901b6d36dd6e49d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0614/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab3bdf2d27e598196781c0ffcf98d0de2a134d0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0615/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6da922d7a31b5f415e8d458e68937e0d710d9db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0616/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2a5cbe5915ca2f55d235918f832c73eeb2b2cfe7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0617/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96c3b10f7fb75aa121bb8860c3ea4e972a47a8a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0618/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95439c598bdb1545a0b6c34e3f7f9b769983668f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0619/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c07e03f7d20d41e3ab9ae1eaaa27f2b1de3c79c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0620/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 69edd1296c8313b899b2e4ac115c50572f2cdfb3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0621/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0d5268545b5273336812e7d986311bb08dafb72c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0622/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e729578da7c7de0f7db5c833c326755322ee002 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0623/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5589f06018399f93984b6a2c8a207eb53d79c835 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0624/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9227dd9d874082f1c826e072d3e8a83f576a77e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0625/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ea963b8f298e6929f2516c5c61be6949e868464 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0626/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 14a57183f3ceca1feefc54c0bd21156450367513 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0627/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d2af42047b2f6caad0fb5fa6b57f8df82648fae3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0628/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf9316c0b0ec25eec00692035fe3cbcc11478d73 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0629/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3d3dedeb1af71f2bbb986ed9ab8e7a72ef9cc90a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0630/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc7c00494591a0857d41d93ae74f5abec01057ad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0631/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8497e4aa00644dbae24b2cc4036baf579f011ab4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0632/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb1613cf77f58836e9b2b72a6b78a25c3aa9bcf3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0633/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 65d7a15fbac51720c2290bebdc3895a63a962d30 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0634/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From afbde3dbcc85a809b99498042cb3cc7e02966e5b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0635/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93b1ced01a6b5ed80e1436a48469ce7003e756af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0636/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6fa1efd5f0b1a2a2791f2de9ec7c86d7f34fb69f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0637/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7959ba275a8b8f398ff11a07827b714bed4638ba Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0638/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac646f5dd57eb8eb9e177f4671c588011d5512b1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0639/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c76446dfef601a37a9c19a773c624121678a1c19 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0640/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82a1b124eadc22f25acc32f59e7334bfa91f5b0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0641/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e8284fbfc2812136262c4064112249fb72463e8e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0642/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2bc43bd67b4450391c505a6afb09dbb39888bf7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0643/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f988d782e98deabec7d78f3d62c05895a4aaa14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0644/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f7924414a3a80088f6ab1125b4f4cfeeeee03d79 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0645/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a697831ac9696bcf0643cc97752c2d0622a27af6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0646/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ed337b2884eb191c32bd3f88348cab27505542ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0647/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dbaf42384b6da9056c6190e13009bc93ef812117 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0648/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad7b8827b931fb8e4322c4b25e0cd9f4be7e437c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0649/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91d9bf31ae473e42d1b0d77d7df193501d27315b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0650/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 042ab1b9f86315eb560f51482cb94039cae0adcd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0651/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 652e1f477ab4ad0d5c1d68ab91d69fcc09b1133a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0652/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e08cb9d37b2503584e16e4fb5d7d24f2cfcd4ffb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0653/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 474873ff52dbf26d1c9893f29902fc1d229efb77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0654/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aac971002a15606ec586d1715a9029878fdd7f3d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0655/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3861750966cb5860d84f09e03171dd0336d9d021 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0656/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 134d624065284744f35cd30e222fe433808c3477 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0657/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 06db5a2c4ef0a835b47992f21763fbf3c1dcd1eb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0658/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..4007f1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2417ad672e3c1091c852737487a3f5ee503dc531 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0659/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4007f1d..ed8cdfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d2d92e01c87372ee6c16ea0e724ab29065f92541 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 02:15:09 +0300 Subject: [PATCH 0660/2596] update --- CMakeLists.txt | 131 +++++++++++++++++++++++++++------ src/filters/ConvolutionCUDA.cu | 53 +++++++------ 2 files changed, 138 insertions(+), 46 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed8cdfd..2b80880 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,33 +20,122 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -# ---- Dependencies: OpenEXR + Imath (prefer CONFIG, fallback to modules) -# Try config packages first (v3+) -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) -# Fallback to classic find modules (v2.x dev packages) -if(NOT Imath_FOUND) - find_package(Imath REQUIRED) # provides Imath::Imath and/or IlmBase::Imath +if(BUILD_CUDA) + # Try to locate nvcc explicitly + find_program(NVCC_EXECUTABLE + NAMES nvcc nvcc.exe + HINTS "$ENV{CUDA_PATH}/bin" + PATHS + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" + ) + + if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") + set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) + message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + # Good defaults + set(CMAKE_CUDA_STANDARD 17) + set(CMAKE_CUDA_STANDARD_REQUIRED ON) + set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 + add_compile_definitions(DMX_ENABLE_CUDA=1) + else() + message(WARNING + "CUDA not configured: nvcc not found. " + "Set CUDA_PATH or install CUDA, or pass -DCMAKE_CUDA_COMPILER=... . " + "Building without GPU.") + set(BUILD_CUDA OFF) + add_compile_definitions(DMX_ENABLE_CUDA=0) + endif() endif() -if(NOT OpenEXR_FOUND) - find_package(OpenEXR REQUIRED) # provides OpenEXR::OpenEXR or legacy targets + + +if(BUILD_CUDA) + # 1) Locate nvcc (your existing logic is fine) + find_program(NVCC_EXECUTABLE + NAMES nvcc nvcc.exe + HINTS "$ENV{CUDA_PATH}/bin" + ) + + if(NVCC_EXECUTABLE) + set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) + + # 2) Reuse the MSVC compiler CMake already detected + if(MSVC AND CMAKE_CXX_COMPILER) + set(CMAKE_CUDA_HOST_COMPILER + "${CMAKE_CXX_COMPILER}" + CACHE FILEPATH "CUDA host compiler" FORCE) + endif() + + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + + set(CMAKE_CUDA_STANDARD 17) + set(CMAKE_CUDA_STANDARD_REQUIRED ON) + set(CMAKE_CUDA_ARCHITECTURES native) + add_compile_definitions(DMX_ENABLE_CUDA=1) + else() + message(WARNING "nvcc not found → building without GPU. Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") + set(BUILD_CUDA OFF) + add_compile_definitions(DMX_ENABLE_CUDA=0) + endif() endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) +# Prefer config packages first +find_package(Imath CONFIG QUIET) +find_package(OpenEXR CONFIG QUIET) + +# Fallback to vendoring +if(NOT TARGET Imath::Imath) + include(FetchContent) + message(STATUS "Fetching Imath…") + FetchContent_Declare( + imath + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git + GIT_TAG v3.1.11 + ) + set(IMATH_BUILD_TESTS OFF CACHE BOOL "" FORCE) + set(IMATH_BUILD_TOOLS OFF CACHE BOOL "" FORCE) + set(IMATH_INSTALL OFF CACHE BOOL "" FORCE) + FetchContent_MakeAvailable(imath) + + # IMPORTANT: tell downstream (OpenEXR) where Imath's config is + # Use the *build* config dir: + set(Imath_DIR "${imath_BINARY_DIR}/config" CACHE PATH "" FORCE) endif() +if(NOT TARGET OpenEXR::OpenEXR) + if(NOT DEFINED FETCHCONTENT_BASE_DIR) + include(FetchContent) + endIf() + message(STATUS "Fetching OpenEXR…") + FetchContent_Declare( + openexr + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git + GIT_TAG v3.2.4 + ) + set(OPENEXR_BUILD_UTILS OFF CACHE BOOL "" FORCE) + set(OPENEXR_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) + set(OPENEXR_BUILD_TESTS OFF CACHE BOOL "" FORCE) + set(OPENEXR_INSTALL OFF CACHE BOOL "" FORCE) + + # Now OpenEXR's CMake will find the Imath we built above + FetchContent_MakeAvailable(openexr) +endif() + +# Sanity: targets must exist now (either system or vendored) +if(NOT TARGET Imath::Imath) + message(FATAL_ERROR "Imath::Imath target not available") +endif() +if(NOT TARGET OpenEXR::OpenEXR) + message(FATAL_ERROR "OpenEXR::OpenEXR target not available") +endif() + + # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) @@ -60,8 +149,6 @@ set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) if(BUILD_CUDA) - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) add_compile_definitions(DMX_ENABLE_CUDA=1) file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 2b1151a..9b18f9b 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,31 +1,36 @@ #include #include -#include #include -__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize) { - int x = blockIdx.x * blockDim.x + threadIdx.x; - int y = blockIdx.y * blockDim.y + threadIdx.y; - int s = blockIdx.z; +namespace dmxdenoiser +{ - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; - int frame = frames[frameIdx]; - int layer = layers[layerIdx]; - int offset = kernelSize/2; + __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha) + { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = clampf(to_int(x) + kx, 0, width - 1); - int py = clampf(to_int(y) + ky, 0, height - 1); - sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, m_strength, m_filterAlpha); - output.at(to_int(x), to_int(y), frame, layer) = sum; - -} + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = clampf(to_int(x) + kx, 0, in.width - 1); + int py = clampf(to_int(y) + ky, 0, in.height - 1); + sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, strength, filterAlpha); + out.at(x, y, frame, layer) = sum; + + } + +} // namespace dmxdenoiser From 35d8ddc76877f185f49ef69b658fe09c79f2a7cc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0661/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From e299ae8df5e9eb109f528e718da9797cf76ae733 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0662/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2b58e8eee910fb5530f0f4272f6965f39a59563d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0663/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ff3f5e9d57e28e6668b1f577e0f03c6ec4be235 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0664/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a2b775800d9442dacc8c19a950666ca18b9235da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0665/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb95d03fc194927438d5c17ccada3e1fc80ca87f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0666/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c551c5f31c16667dde18cbd3779fcb063f8ac873 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0667/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf77693c995c4607261967cf81489ff0f9951708 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0668/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d47801e387458b89302551cb1f6fa726ea6bea6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0669/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbec62ed3b9d71e1b3d6417927935c5c289e905e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0670/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9fc98dfcc1399cfd4e4c8cfd727c95f8872e2b8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0671/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fcb1940ac9d1639fc79f2f00d12eaab695dfc414 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0672/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4e4ef71633db8eb6384ad508dfdd61581f70ed77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0673/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fba40693bb86d9951ab22c8ce65f15dbc10ad36c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0674/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d362c064c99e226ca8d1b17ed6f85b2c2c7c237d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0675/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0a1f4bef45f496603ce73419ac9059150db7e5aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0676/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf9bd5d17ed183b6b39a903b7165d74c60963902 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0677/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5eba0e2b648d5ccefa8ae09d47c7a15ed46976a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0678/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8463b1210a3e42e26355863ca284bdaca72491c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0679/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 240a9064607209802029861dd2b0da6f522ee2e1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0680/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae8ce0a163d016c5b8ff399ea18a28cb734cf7c2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0681/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83d8e74fc3cbf440094ff635da3f8552053f38b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0682/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63bb5ce72278971ee494708cc68febc91c0cb811 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0683/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bbd83b22848e8afa250ae44efc7339b061179865 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0684/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 877a5b00af1d788f6d45a87a7060131a46ba00b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0685/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4b323c51310613791a10e453371c4d817e2cb1b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0686/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3abfd963a907b6b19642605f97007efdc7d8a257 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0687/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 644ce1323e71550005acc91ba72af8fc9d0d56a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0688/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b0a23c49f84facc62f180b048ac1b3de65c9f69 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0689/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 21fa224655fc1250b9d9e6659e04a3402d95353c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0690/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 31fb1916cdbaac3994163e524d64fd0ed2217b95 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0691/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9443c3c5e7fdda2580101fbe530863bd57fb67b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0692/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 41a24421bc2effde3ac34081b95c9daa5b5aaae6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0693/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c7099746f9586a88f86bb6dde1103803add328e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0694/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fb265e5859eb2c10b7aeccd96e5ae70fd3ac9e8b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0695/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 76b493eea7d7aa5d7ffd3c373f59a3e585db3bb1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0696/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63550d7652e37d37483ee06dd7519825a1ac0063 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0697/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 114b529f01263eae62626b5f9375a3be85ff6cf9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0698/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bed38809391c93b8bd80bccb9b3cea5219fa99f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0699/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5df5e349ae5bdf9244d9f3884cdb9f47dc8a5a81 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0700/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1fa9015db77ee1e60f41e3235716985903863b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0701/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8e9daeb539a6f9bc66bd8f33675d5b111fa0f1a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0702/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 802183fd4c65457c1a348bea6e8a3bef2c070bca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0703/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a6a4d8d38437b0c17fc57821fdbadde7134f7b35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0704/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 284c71d27c484eaf742737a5c8cec45019936356 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0705/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1374bc7ff1f493667a662ddecab36f4b25227a55 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0706/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d7b404404a193356481e786c460d0efd1537c4d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0707/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 859539f5cf8272bbc6a5ea4ce7e5d09fee0c3a7e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0708/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ac2659909a59598c5b8cc18a63743d6984f8daa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0709/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c47bb6283a2e8bed8db88ecd79ca0b5668f0f23e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0710/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 85b354c6097cae95738235e6f872891af07c7481 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0711/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e915b369e35ca5bd3627f5e799888f5e4182813e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0712/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 579d7542a0687dbba14df12c85aed55c1e8a6a63 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0713/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9522d56695a3581e00e7dbb3a33cadf9f033924 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0714/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d2d4cd530ebbd64e813e3edbf23ecaf5a67a9dc6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0715/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8480be7df8f3717c0d935d8426508b76d73f25cb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0716/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c96ef2b281ef5457ff723baf51da9d43863983c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0717/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aed4cec88a8de1ee5933011631aeb7dfc1e56af6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0718/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c7c80e9be9d42e11a588139f1a96f1763eeaf56 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0719/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f796aa37a52032dc9b985a6cbd6f00339cd06f88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0720/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b6cefc3d42f2a290fc492feb61a8cc64b9e9dd4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0721/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7cdc42d927338f55df196e9d663ce95b34a17a5c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0722/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bae95fb4bd529490f1b8d0e5e9b1d06b84694c5d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0723/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d3655b68e107c209a6d774db34458f752ec9d879 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0724/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4cee13fcb5e07aad4dee52246192b7b9c890e468 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0725/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d45579850b50c662ee7a446807830337bafc3f5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0726/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ec267b8cf4b99b6e7d2b8ed57426b2948809458 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0727/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 697c58643ec6ee90f560590312db40ccd8efc8fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0728/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 04262c9f061201601af69f684232343f2357f3e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0729/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4223ad6fafb5663f8a301aba4e5870140aead3c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0730/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f01c3728d938d6cc8c64f128aef0afbf34e5a2a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0731/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0d0e1576766e917db2cd573e39a44ace94712029 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0732/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c93be6a97c725cb4c9c3237519808df8c569a44d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0733/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88d6c6801c84e1c735e25139825c3c7fc8d5ba82 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0734/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24127464c57b20f88a9fb50a4f38640d563aab22 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0735/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 77f99af15cad3fcaf2b61d8a87252504d12186c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0736/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7ba3ea5456ee283c77fd7829cd1176da480f8523 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0737/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe38b204624f809c5593a8e2ef88a84199719922 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0738/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b39a58556c91962b3b8515e577b0805620e4e7c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0739/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88bc8e3bcc16bfc44910254c0ca55d3cc939b8c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0740/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b223b28dcbdf4c4c2d3dcd482f5af6195dd6513 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0741/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 07791b8b483e94ad204ce0decaeed74f2ca12e4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0742/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e73df3cec107300f96f574d53d03ebdff3644eed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 0743/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From 9cd32c1a87c87b459db52cada06aa859f3b65301 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 0744/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From 4d484c4fd4d2925dd53a0dde25d3dc4f5382265c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0745/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b660c1660f73c77c0b5412b6c1db9a885c779660 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0746/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e5a5cac993c5598d048cf7cd1f70988538d1989 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0747/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3973e8da28132f0417e16f137d32add81cea9b23 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0748/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 08658e9383bb237f0fa53651f6572ee08e8c6fe7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0749/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 67de84da7efb50053c63a9467865d302a195054e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0750/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6e880eb402d02ad4ce8c0abeca6d83f4c847b6a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0751/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ce9927a4841728a31f2062dec5a9955d1be063e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0752/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c6d486b2d5aef41c45c656e4776877957d84a53d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0753/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24f67748722d74f0d7ffc13309e43162711cd764 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0754/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5482a03aa0b4452d5489f7ccc7d49803331c464d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0755/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 916f8771cbf85b0614e4374371c5277b542a0b69 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0756/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4f5b1e1f3ca7f0c82bb432380231100a3da25259 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0757/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 42f54e40331cbd19848bb706c60562c9e2ed2b48 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0758/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a8243097024f179355b39bb88f344243ebcc1336 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0759/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9a064477bb070d738032a786a313a14f6821dd9b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0760/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ead22c5076c49eb463b2735d24cd7584a6873c77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0761/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0e95a8509d2c00d7ca543ced07f531abb460195 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0762/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55bdd7ef6f3f9232675e6440b8e759d3bd121883 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0763/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c25c9160bdc3fc78827c49c1a6f10c4482ab81c4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0764/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 702dc3ae881c6d87f0d82433478c292cf11b8e2c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0765/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e71c32fc87c00691f7a8f1c8f173e4f8c0fb424b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0766/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc2ef2b92f3abc89a8f5d37f6f95c0a990663cf5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0767/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9de067b5368e5d770a8af80dc88c72e258845db1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0768/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ee6a2b00ebd711cb7ae44aa0e86de4f64ffa277 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0769/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 332aceeb8b2b9ed167a1788a4f9b1525f5c07c87 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0770/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 519779ed126cf7a36b218f3616285bb995c86b50 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0771/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f6fe145f386371d0544870a5c48937d426e3a987 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0772/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bdd56a0bc8be668eb9c98f8538db1de7e744265a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0773/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73f5566ad1c5406edfb6f233c2a060557ca10b15 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0774/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d7ae45c69655ea6ddfba77e6157a52cd6476a46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0775/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f27934c6a69ea0d5067ccfb4a79233d29828f58 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0776/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8ef427c1972bfebb42229102e48ed9b4fd465fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0777/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f5cde5af1b998c3f6a50837f1d54c742dcc459c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0778/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a84d980d55af974fb4afc8b73442254f3c0d72b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0779/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dda84a4c68720dd91e845ebc45cdd71056cd31c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0780/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c74ade54955e6a1e885169060938669e9a49e33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0781/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 27bdfc115073c0e9a51ff83c9376d9b8155d4f45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0782/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba84d8bccb1deea849521dd03456e45f0cfbeea2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0783/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e1e0f9660ea5d46c5946dad944186182a35f5f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0784/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79011700f96a82e3be1614ce57cab4a670d9542f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0785/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 61da4069e6b999bc8dad8942bf1c4a2eddfa609f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0786/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4034c266c978f4d498e206ecfb2cdc6f35b5916 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0787/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d21df7eb153a9ce20794c0b8f8a80f68c3d48eb4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0788/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3482114343a29aef842d5ed37f05754abf291248 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0789/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96fae92785d1c81067b60596df9ec168185f564a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0790/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e017feb9fd28fb9bde168da31b8ea92dd4f51b7c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0791/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c77dde1d3bd4f2248edbbbf7c8939afa0ce3b761 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0792/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d6ac2e8de744681bdf0d0515af0d0503205b211 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0793/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3bf143cb214d555e12b5af0537a172ce78d2fe08 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0794/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58b99d9596f5302e6bc20e3544806caaaadabfc3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0795/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cbe778745ba7470e1f9c64404192455272ff21f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0796/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f89e1d7f93b23d57e0d0a3f4930ddb4a95c386a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0797/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dfe16c3bb6f704ae903935b95fcf683f94ea60a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0798/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f12f7c7fe78c3c8e3d83c2029518d6abc1636663 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0799/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d72d263e6d9828aa379dc4a988424513a9a4b761 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0800/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4d329063ac91eef75ae11236334a46448eca5fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0801/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b684c5243719c176ee821154a34b17ab0bd0727e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0802/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de923bd8e2eafa8ec8a4e721b0cdfa780aab73f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0803/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 086aa0d443eb13c352300f412dd530e9eae5ef52 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0804/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9c801fcfe4f7478b8aec6bd1efde880a56d36d5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0805/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b982f99a0a34178e764a4124ae3617d95f5870e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0806/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 19674c57e0d312c89f5ddefcd9065624cc7d1895 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0807/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5816ee3c9e84d408bb3ab37fdb789caf3d84b008 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0808/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 60d3ba1ce3dedce54e5280770d649c632624961a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0809/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6337ead1fccac0563cfe5e8a8477e090ac38f2e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0810/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ae8390376ed204e05a6a1198affdf874e737caf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0811/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c3053b7159d19638846224a4dc461e9fddb27e80 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0812/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e08b00c950d1b6ba338d4c0fc053832c75605e3e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0813/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28b45ee223da6d21ff8486241ecf7e8df91e750f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0814/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38657eabe71165eb1ce4f70c6809d5ada92a5354 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0815/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 69bcd936949f7c2ddf0ea189c918f5e4a9150d03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0816/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 46d23c54004f64203cacb6b018617101854a1cbe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0817/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 76aa5459bf302205b9fd8f494de1fad2fe324f89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0818/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ec9a9c80ab8f6d5a709c2438e6cda9224f7668a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0819/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 06939a28f776213eddb65131f1e9dc8115bb102a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0820/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 33957d9f21e37894337a3fb5a4fd193986a4a50f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0821/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From da593a6909e9c23c09a5439be840df5fc6c01df9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0822/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9b6c8b0067b01e70f38c5817ff669b1a54d278b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0823/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c20f4ecbe8dd7622e8889ad0311effc91fe2b31c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0824/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e80cb370e74033e04c27df000ed69c810225da0d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0825/2596] Update --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754d415..8bcb3e3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ - +/build-win-cuda/ tests/test_files/ CTestTestfile.cmake From 2a6ffcf38504234554c369180838b90c03659252 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:00:00 +0300 Subject: [PATCH 0826/2596] refactor: cuda convo kernel --- src/filters/ConvolutionCUDA.cu | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 7a3471d..e08cba6 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,30 @@ +#include +#include + #include -__global__ +__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize) { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + +} From fc15e9acc9917769ac785a54d1c932e0ba3b0f93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0827/2596] Update --- CMakeLists.txt | 24 ++++++++-------- src/filters/ConvolutionCUDA.cu | 52 +++++++++++++++++++--------------- 2 files changed, 41 insertions(+), 35 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index e08cba6..9b18f9b 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -3,28 +3,34 @@ #include -__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize) { - int x = blockIdx.x * blockDim.x + threadIdx.x; - int y = blockIdx.y * blockDim.y + threadIdx.y; - int s = blockIdx.z; +namespace dmxdenoiser +{ - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; - int frame = frames[frameIdx]; - int layer = layers[layerIdx]; - int offset = kernelSize/2; + __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha) + { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = std::clamp(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); - sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, m_strength, m_filterAlpha); - output.at(to_int(x), to_int(y), frame, layer) = sum; - -} + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = clampf(to_int(x) + kx, 0, in.width - 1); + int py = clampf(to_int(y) + ky, 0, in.height - 1); + sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, strength, filterAlpha); + out.at(x, y, frame, layer) = sum; + + } + +} // namespace dmxdenoiser From 04c361103542e9b16ac49fedffaa05f94ce01ceb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0828/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9c721f32147004122827d56e538deef260b106e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0829/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 304b298c95b197b9bcc032388ee48f4845edf8b1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0830/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b3e2b60afae2da9d0d20aeb1f5296451e9831823 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0831/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b85b3b99d3ea636ef131ac90dc4595b5a20d1fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0832/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 725fad33d55a17c2c45d0c43a6c227b4b02053bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0833/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ae1ab3f3450ff187696790ef307375d6540fb12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0834/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e1d362d645a57562c65171ae25c36b16ae81014 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0835/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f6e62f1fa0e8b85d5966b8a8222f5b9b316c0977 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0836/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2505be4c708c87b585a038255e0afe3d052bc480 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0837/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7bf96621e09b1fd824a4033bc29b1fc95930e7ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0838/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 75a5d8b9b9c75bd2c7d96147b6137f1119402f9d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0839/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 502fe45a44ab6dd9fe277997e83f7de7aa1db895 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0840/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab4ed8fb2bfffd64bc80911fc84cb79a8248f465 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0841/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e78be8dedc74f75c1a537827cb542bd7ffeb1810 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0842/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43889b688b5edad9d89d984117eb931b07a790da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0843/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91ae776810e67fe4e06510d089a4041a7fe04c40 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0844/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0535d526e728fb6d04e96e2aeb24a462df572f44 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0845/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 922773af4094d19e4a8b8895b745dbd02fb3df54 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0846/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 262f054f8107ad9b0f3190685956778e0ed6d18a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0847/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5f49abb01d4a4d21e53ddea9d6385d3c76610c1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0848/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4319c4ac81e16a135e02fcb44981a9d5573fe9c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0849/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c18b2e34dee7e2a6af26fc92dd79a969fae2a9ec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0850/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e9b3ef942918643452cf5c561e806f835797567c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0851/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f383257fbee2192a74a52ff284a356b00a74108 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0852/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c6462682d9d889545c834e3fb6c8fb14de23a99 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0853/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f863b2e8de986255ffdda679e28ea9878a9b2ea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0854/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc55c19932ed681f9c6268d75e5e3c19393555b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0855/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 35561d6f1c3d2c59187b363fdd8c5bc7dacc56b5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0856/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e214002ff3e84e159437d94b381b7b498bdce8c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0857/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7bec5ca8bfeb59eed5b63d16bb637e942b46642 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0858/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ec274823e6a5ce403b7462770fe5281bdc860643 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0859/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f1764d60c6573ea2075191d3732e4c17d8396a2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0860/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dcf0907af9764923b16fb8fcc261ab51081ce022 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0861/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c725bb264f7e7dc9ff3c699e557b672796295b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0862/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5039e2f1a3eeb1cbbc32681878454a1079586fc6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0863/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d61afd217b3ad730669e9749d96f00df6e4cfb0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0864/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b84583b8f65a1d4e49eceab24aa593e228e6a2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0865/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9a15c6f2a34a29b95b8d70bf99082022d34d1fe0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0866/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57e17162af344b24dfd99875812d19c4f80e48f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0867/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4b2c614deb5254009379e85445d200c0f1e4a0e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0868/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b1c421dc1a5b19aad2fbe4722befde2e46ed83a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0869/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab40ed8d7380dc0ea2f984ed01887f061cd1dfbc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0870/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 56ac4dc26e2ef51e83ae97a5011748541c8ddd25 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0871/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9fc0a0fd28072af310f3b469fcf48ff44d96994d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0872/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3309106b5f717434c71ca1a922971f1635698ee7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0873/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a79cb5650abeb1940ea117b7947f3f54430a06c1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0874/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82972d41f14e33229393d967d9e7b981aaffda3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0875/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 989ea30025c1a74a13edc84ac312730b8e38ab11 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0876/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb46070e5c4fc45516a42252301b8cec3d2c68cd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0877/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ed4fb5f89c34a65bded8c7bef829d88b40d5ab45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0878/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d23ba7030bd66026747820acc7494020c377231a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0879/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9364c2dfcdb3bcc2005c814315f9fa7e184994f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0880/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6afa51da30b886fecbcb7a7409f98426f4035823 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0881/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9703a06c20a26844c0815d5133de8733e3e0f74 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0882/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a992cca7c3303bd53352a2b147a3900865c68035 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0883/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d48b0eb9d28b4e240f1bf40f06aaa3db426961a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0884/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0b5fd0373da51e45e2f19888138ebe3b04323a24 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0885/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9fceda888806f4ad1b802b1cc364a69cfeae7e67 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0886/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f3b6fb5e643804e143409f6b09cc8f47d48f490 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0887/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63a3c5e305e953d5971c9783238fcc732dbdfc30 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0888/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbec7cbf3a5ee25ce4be1ed8013db5aa515590fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0889/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d39ccb6af1a5fb480b55d006ec594c503809a883 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0890/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5fd029522a19c7078019ebfde00a0a6ec82e0083 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0891/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4daade290cdf3951d777a24ef80ccf8004f3c13 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0892/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3102a9d38378f27793fb8bc2500a912b9b7a6dd0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0893/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d792390672d843321687ac355678e6c2afdca76c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0894/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd683777d51d98499ad9c79e64498788c0d4c3c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0895/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ba88f7a01e4b19dacdbe97d766829fe26e2fa39 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0896/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3638f0caf8b66727c205f17f7c91b38ae2d9affb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0897/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79245fc5c04e68a3ebc21ad423d48c3081bad113 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0898/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73ffd97f72e82f137de9ca0ab0c579c6b21ed429 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0899/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6d5d06173f715d1d05817437a266c43cea552033 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0900/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51def71615e81ecdb30ddb92971b533fd13be5a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0901/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5d154e2d5ba7d6f1e0f054727d48e6272bfc129 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0902/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ec23fd17bbf83518f7e5d4f19bab66f651d955f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0903/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5b6bf9d8e358eab220ccf4ea38039a392b59894 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0904/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f93dc541e86bd3b4bb338b97396b7da7ce4e2abd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0905/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0a34bdbd9a72c4d00fbb80d41d3250d37672612 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0906/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c25e433719750f6a979fce34a2e47939a7a77647 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0907/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95cf45c0c7cfcdcad6f1af817d8705e752d63fc8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0908/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ddce9543a7631434b7b2602af8950453ef4c9348 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0909/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96a0aea23c61336c06b48d12f8f3288461177dec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0910/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ebae56d458c15c55ca5c0ab3d1a3a5fa1c60b13 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0911/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 20c2dc21cfdda495207071ba6ff0c730c6e3f0c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0912/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd61d9dee05a5b790c552d94a028148440754517 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0913/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ec843cc452b72e4f8265ec4d8cff597ca07bc3f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0914/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 218739244b5fe2c536bdc108cc30088ae080f428 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0915/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 45ee3d57e6e5df179254492eb3b5f7ebf61a8707 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0916/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 870469cc0c449dad633d2c0adaefefc396bb6809 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0917/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c73e377f519a9511db5750b516bf2194d10c9d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0918/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8e889ccf450f85248ecf82dad2b8b95eaaf2ca65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0919/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c727750794ac76edb1886a8f4f825770a103422e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0920/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3436836afa5e3c2ba18b31357824205cd30f2b70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0921/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ffac4e52af6ee7ff8d4a28a5c0d80419c25b47d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0922/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a39c2e6f30eb30f28e81be22bf6e76aa374ea98b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0923/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 09e94e47d0c370a5d45166973a560307382eaeeb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0924/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f6a009373356e447765b6d63a3c38d67d4abab7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0925/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4303ec4009ff633951102db7808322415e97a1d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0926/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cb65238c7fcfe55f57bb4d3d6c8a17b18707aaab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0927/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 665a81e590bb27694109401a0b93defb4ff2e77a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0928/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba4c60ce1ce70f98b05f3ca3158320a0396c8d8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0929/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dfafa52de25a803325a418762e086565f6abb25d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0930/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d4a914229aeeadd630601bf451e6dfb48037331e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0931/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4c592bb08df670d96e781c9df94a7ddf8cfd5dc4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0932/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e929294458a257b4e0c41e4ee54ddab0019b4ec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0933/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 749d68a833a06a446f316505bf3dd9cfe23508be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0934/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae75b7d9bbbe69f65f89bd79ce9b8224d3f9a072 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0935/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f582ed2568658f28d0cf3006ccf2ead78abfb8d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0936/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a7524a9e6ef6264f766a998ed694b46c2f7b6f91 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0937/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15f033edcf0cf5c766dbc9c37cdab0c9354763b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0938/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d1f19ca14c1d96cd82cfe774a5461bd9a5b7740c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0939/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de340d4cb6918dc946ea3b8c5b88d9b2aa13179a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0940/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 30a2a16d8d57383b2b19c72062b9a192ce81089a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0941/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 225fbb2ef863e1a5ef65f848c737580ad8513996 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0942/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aed730bec15062c18441b5730c907bc41c67e40d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0943/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b9a7c0cceb880d6e7a66d811f1151b200439910c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0944/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7d7a32858826de0d1d2c9e224f78434576ef815 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0945/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 472e7da66b8842564a240d674b2bcb18095fee85 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0946/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff8503a92177a36233dd2e34475454c5fefe4c5a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0947/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e72c325da37e74fb8143c6fea53912709f61b6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0948/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 67d53c14c64f9b6a346ab4a65fbc46017b5b04d7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0949/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9a6a08fb42a9816ae2e6a4151fe2842ebb71ad18 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0950/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 957deb36270e951fa3174e09d8a875e8f9d4cddb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0951/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64f9664d99390d5bdd0bc65636d87a49d4055271 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0952/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ce0e00cb7ef01ed2c11b8ec56e1897d185662db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0953/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f65cbd6ce9e4db1e908478bca9d6a81fe9e36f4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0954/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e1a74464c550116cf0e538312d00b87ccc5b939 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0955/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1d834eef8b94c4393c8c93d8c08bcf1248bcd681 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0956/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 77aa13dc2b28d159d83277066bbb44bec7992142 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0957/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5293e65f812ac276bf4904375019872faed39fb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0958/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab75f8571b83cc6909660241773898bc3ed84a73 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0959/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 548e1ecfdf8b2deaf247705552cd0f77d4c27470 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0960/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ca64529012fc291db3aa18f6631ab5559696869 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0961/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9bec700af1efe53adbd12d0a393f1131f495d862 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0962/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d87afaeb88c357f3aafb669154c7e3dc9a320825 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0963/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 47208e8cf37bb8136209817803cd2a211528292b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0964/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a163388e2b6bc89c02a38277daa52d63b2b53d24 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0965/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bdd00469ccdb1f6ba9ff336b797c80ae7ea77380 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0966/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38a245494e4985e537d5fc432dffc6dcc073450e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0967/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d4319136ee2e938e64282219101e267b3d0cf79 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0968/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d186d846ddcc816ff7e7b4c2594c59c43ed1f24 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0969/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 251e745fc5a9bd992eaf82f6c5ff079e5885f9f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0970/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 641d3c1a98e68dafb24f8da870f79f1daf16efdb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0971/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a2fdf7e51f18ae4f5b274dac5d0f2170885c9b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0972/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a87860ae204ddcb492bf13949028e81c048518d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0973/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9d12506e2d327340254951a9590936a3f6a05ba4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0974/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ccd42b45a78d4489aa8c9606fc2e612420c1a33e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0975/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 47b749a935ce8746725b3d642d38cef6d8d33116 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0976/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f53b3797b44aa2fa3e082a92f7458baedd7fca2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0977/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 293b502ea546998918437bb94128ed424a128eb9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0978/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dec3fddb62c9b4c2c1df6f4cfc508bccc686fa6c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0979/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae955f13e41d3a0fcb0e83a91c3cce2d3c483686 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0980/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8882f7f8cae6e8932718101528872ef3b29687f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0981/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bbe0c8d8e9269748e8b06f29a8e6d12891e34594 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0982/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4aaaa6fee28d3681246875a3ed54c08dc7248f87 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0983/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7099b4497d52ed91b9ccf198fb3d2aaa9faf8a08 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0984/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5033fc611bd9522bc505591a407bca69823069bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0985/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 028c2de85c3679aff3ef884ec29a5b11b5fedb4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0986/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4a8aeece421c6ba6614a6aa053d418f263195714 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0987/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b31f92e4f1a77c705d43e439c20ae65486a7c518 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0988/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7468b4359562e6a638faedf29fe409fcd65a408c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0989/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e6c53394685895cb9738d982a366ec1c4ebc3af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0990/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2a80a4aa316bd188cc0fdcbe57f463f2807a68aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0991/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7034bd2b020126168ca4e5a50c2a68938dd2ee77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0992/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 775d0ec3c81d15b8b4118ed9fd42f2e8da2851c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0993/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1727e5f3227b4f57c77bb6451a434abfba0ec488 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0994/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 32f8ce71bc97bacbf52b725bc68b28aef31b7f5e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0995/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89b52182010f610482a90814971bc5dca117b1ae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0996/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 49258b3537c18f138b7de3824d7b8c33663b3366 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0997/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c44c20d98a4093c5f2535ebe4804d416aef7e89c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 0998/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ee5be5fe8247f3749278fa119fc81ff9244f9d27 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 0999/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6a84d9d8a898d394065c4112eedc14f040e80d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1000/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From edbf95553cd3f2ea6511160b28862638dbb2ddb6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1001/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fb2096246285f2b66bb3ba323ff9dd3e920561d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1002/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 601b6786a8c21c221d1d5fe3b8b831d16345a633 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1003/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72cb7bebb2ad181ce2e54221476391899a50bb2d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1004/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 546c1194267e2fef9fac6996276872dd0460b52d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1005/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c436b09868718a103fcdbb2b2de8246a373594f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1006/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0a110d715af41fdc977ae6b7db8e2a96d57b57f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1007/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e5e9ce512330ae1fea0235523333dc760ce1433 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1008/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5b7a05cdaf139523543d761509314f62fb75c3d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1009/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29721db3873332ba55416a12195a5f5611ccec25 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1010/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4307303b6dfa368f27a095bd8eb7e94f4242867c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1011/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c173c801241a2ce4452ea35e8bb10770f2d04a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1012/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de9ef36a229ba1262ee9547aa788997dacc9f13e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1013/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81de7adce8430457b52506eb8b408ba66fc226b1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1014/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ed6097db31554f2c3d9f63621d7bc76f6dc9f3d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1015/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7b7a6412d31815aabc8666d585768d2d3506660 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1016/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 918baad0f44ee1f6415e08d3c75c1f63d7412201 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1017/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94fa2b4bfc80c6da93c0712cfe5528acccb84568 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1018/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4dc47b13e2c5b610c04599e18046b770ccc8e19b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1019/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73e50fac49534e395cd199cd4905748687328f5c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1020/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3fbeeadc81d69a4936ecc6bf4de0985f854eaf2d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1021/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b650903e9dd9cc01e7dd03e489fd39b9cbf408ad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1022/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7cdf0219529387666f259636f331f7c0e3c9dc14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1023/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f14b0be06422165452ea8b005542fe5bfc1640c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1024/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28f27f3a7e0bf3f902e332c0a7cfd4d022ff1e0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1025/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1f6838ffb4af80efa92f0cc0d44e743063e09f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1026/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ad624ad3e7774dcb44b58b0238990cb97ae3d70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1027/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 342ac57a35a7166669dd814af5ffaa6469dbd060 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1028/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 095477c471575ee506ca8d278a53dc48a1bc7a18 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1029/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a0e10611f76f4fef146d4ee4db67b99c2b61e2f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1030/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92e7eca4ce5238cb18ba3b1cd0d9c5476de2d8e6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1031/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4eb7838d3298e3b5475292d950755c4cb4d6a20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1032/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72956ca8e6660761c3756d8d50c932aacf15c244 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1033/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 440c7a37113f0b2e0b7496fe4060d7868831d976 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1034/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b648bffa1a2bf5c1af90dba28bdbcfac57d7918d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1035/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d8344a95f9a975174c98b107aa06b7d2c339ffc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1036/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a13717b39fb49ba7b0102b7ac4770b96faf2761c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1037/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 237776a251f63b1436dae3ef2b06bff0c8a91494 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1038/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dda08c3339f117ca32e8ffb8f9eaf18ddf7a808 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1039/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 65172dfc1caafe740409320b597c1c0a7ce0b4c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1040/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72d7d1e64d14b9feeb9b1a35cb4dc947e3518504 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1041/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e43aec25aa8ea99f800edbfc447b45cae0bf023 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1042/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e35d165694bcfd0f1982a43b727e931d55181fb7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1043/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ac59460c37379643f797ce810b300bce1d484d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1044/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6fe0cd4baaf98c064e0217afc695d0863928ab57 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1045/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 47d3366798c58358350502ff7add7a1d7f9060aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1046/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1d545f78f79737f0e90ab4dc888a5a6938431893 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1047/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e4d6c460f061c45dd90290de0779812b84bce9e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1048/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e1acfbdbc0af853b74b5a0c12eb29b4d1fff871 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1049/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7dcd735ff2c719da29fb229ba6ea7225381005bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1050/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fa9ebf7f0abfbb41cdade295854c78dbea992475 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1051/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3b2b019e62c2c7924394695e12cd932185a531fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1052/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4cb8c3ac90ee03b464173966a483631f43df608 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1053/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2ceccd18af60f10c037abf83cb61c9b214cc3d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1054/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 230861023aee42acafb6a625ae29557c94395d42 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1055/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 46480ad9a9a3182b9232b4f6c676f6a2d3d5562f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1056/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7265a794a6ee5b7b5da26b9a4a7613d64a785235 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1057/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c50423d29e1f4e2857695f7a36ad01412cd361a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1058/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f6f7adea695a99299d217d39bc00a7e2acb1e581 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1059/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf2fd8ce9a171c335406c45dab5d9a85842fcf14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1060/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 892caaea5e1c8c1122288def7edbbcb36b4be8de Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1061/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2cfa11f8dfba419acb48ef9df4d169da3d9808a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1062/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ccce1bc10e064aba9ad8d16297b0ff58550710e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1063/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd0de3b37703ac65416e0b57d607da04649215f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1064/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c27c49a373d55f3f294851b1bc9370814c402ec6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1065/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96784edb8da093f9445a70904546ccf2a3257571 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1066/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 040eac8b93a0dc86cb7835c29f6b7f093245ce0e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1067/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64e256a5506b3643dc03b030f43f7e21b25d4811 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1068/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f44f13bce664f68ebda62cdcaafb151e781bc21 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1069/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86cf1ff806af8a6cbf4b6089f7b6b2e19ded0e47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1070/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d897480c9c53118c9acad764c209feca1ebe583 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1071/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 763c18d87dc622b096b8268341d24c797537acc2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1072/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fdeb3c84b6c62d9d9c9115bd7f13eb61471e62f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1073/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 75afb4f074325839158fe12fcd9bd0db535d17d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1074/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cecd0f36c7f44a3903c72c3e8082a5ded3e53e70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1075/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6dccc4fa47c18a75d9b19f9afdfc7f129843dd6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1076/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c143ae19d78dc198cb3091a933daf8c50657379 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1077/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0e9f17727afd6c95df0dd944cb1522e7edd26cb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1078/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d83bfe9ee3584d156dd2d2b56d11a8173d355ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1079/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6adf4e655f3009167e1eafad9a0fa1b3fd876dc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1080/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 44d89f8ffe1eb7e4f121db635f96d3015b3089f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1081/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc1a4ef02d0ea6bde4eaeda5328391c03fa320e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1082/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e88b38fe431505363b64c01ef00d9084bc3de97e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1083/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf7aad3f887243f1885ead8db5d1d7495c6b63de Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1084/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9dbeacc6400db73e95426ed62eecea405b92fbac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1085/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cbf660ecd6500e57ffcb621f91e3035954393f9e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1086/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b48a3e88f9d343523b801a32812b70d29651d1f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1087/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce84fb4b0e0b63bf94ac64b8fea4428997cbf564 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1088/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8ab85a8468b8c1e1c633de10de73218d4ef1b953 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1089/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59ea8edc6e596824bbb9546b54129ff66b6f9cac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1090/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a16df0f5ee79658bac8762bc01de5dd000fdd5eb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1091/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eca5f1267721608db4d7c1a74338a12c4972f097 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1092/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 260fde6b15b7ee1f2a818fd5ae326c1928dd4211 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1093/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 962dc6255a3c1f5f97b1ef342cd06e7a23c1562d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1094/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4085e13b20e7a8420c5e1fce87fe6182fbcba80c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1095/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6344878fd2c8d45af0f013d4acae627e1971b372 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1096/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b5da129963bac4c1303589766b42a31e371f465 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1097/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7adc7638212efa749fabacf75283b4dab742a9b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1098/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 01405e209fdb45ed2eb3935be0c62aaaa600fd14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1099/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9dcf903861cbd135d4096790e8c12aec5ef9e60b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1100/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1aab0ca0da07fa3e7f4fae96caf298381e88c47c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1101/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aeea620d1dd5e43ddf5b572259208550a1a4298a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1102/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae6fbc240e0d034d540951fbeac5ab63baad0216 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1103/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4dc564b8cf56096bc9c2e3204b240e56e624ce44 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1104/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a3c69c94930a83e5ae6a32ac2b023cde4ea71c04 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1105/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dc08a2b28644e2ed88395a605e346c5fb14bfe0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1106/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63d8b602c5a14dd429aa00982df76ba51ff2bfd0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1107/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e07cde5ffaf14d9f0cbb9242db975bf73b2a3efc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1108/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2a1db6e34db24590afbcd003d30e539dbf178ac1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1109/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 996feb1d0d21b632f52474a7558170ce774031c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1110/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac9f955d8a27f36e88d466ab66e0ffaa644e37a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1111/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5febe5df1823f771f11dd429483372f8238944bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1112/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c8a66efcc73ed8301986aa6a2b4ef6c1d168e55 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1113/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a47d6fc7f0b5e3a6815b0b1b41bb3dcf7fd4a6db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1114/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e3c6c1f76c85d99fd7071557000ea8f4f8d6d8db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1115/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93fcd836584fdf614041953c7f3255bc7ed60c2a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1116/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d784c9db20bad9e2ea5c6adc4f72d82e23b6712d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1117/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f54be402b5a4546d5f5e8e52b20fbc9625927788 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1118/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad9e22ca2b52ca1e63cfac33ce9af4bb8cc073a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1119/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0bb2315b5038ca74640e1b2a9d6487749e826cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1120/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f8f293fe1bcdcdb803ee9b64fc97fc9bff180da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1121/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9827e086af37e3a5eb5bbdfc4ffb264c86d762af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1122/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a0b90572b8e1c63dbb7edee6b1fb2f857f33c9f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1123/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 092265ae3ad868efe3ee493156a7da93dc3c165e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1124/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff1bc7f295bcda442eec3ac66ad9d723b5c540d5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1125/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 01c8adb8157d11dd13ab4dee10145dfbe7198f09 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1126/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa1bcdc0aa87d71c25bd248d71cc3d60de99dfad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1127/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 53244b0be330cf20a8fbd929e67aa8497b93b39d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1128/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e916f825b3cf95598abaa9d54b3ec397c36b5e2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1129/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 014b6c30208d4a37e47840da3fba6e33a7db1131 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1130/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1733668dc40458d480d39ab334bf7b2dff443cdd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1131/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a0652db2fa13459cdf32803f19eb4c304d76263 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1132/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38f91e2cde677c308734e6cec557afd9d2459def Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1133/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 569c72998d0e23a3f2677d24bf6cc261279c8d8e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1134/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79aac1c9ed277a13911f2b5924d645c3861ed423 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1135/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0b53f2d1f31935a528076596f6215d53079773a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1136/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c2df00a7e08b5de586ae39e7521cfaa4a99991ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1137/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58739ec0e3128041a19cbd3513884b5095763cf6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1138/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ddc45e7aa11b1ac1e0ee52a5f98e291e2ae11ae0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1139/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68907d86176a4ec675185581a43fbeb4773e30a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1140/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57afaef88d51a087f2bfac853af5df9c358b1d85 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1141/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f655eb1848b113c5fba74cdc5fbf5e1fcb30459 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1142/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c69eadb23fe3bc53809e34abb9184391d7ca63f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1143/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a6663b5e26ca03cce13d907b3d9a94b8fcee4472 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1144/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f5046b7b1e5d35ab48195e56e1a1f5918ca19e0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1145/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 21273709e97b7d44a83d6f4c6b0021779b03d350 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1146/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 37c820717d8be850f8553d5573a224448ac1d912 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1147/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3faf2ff5a06174f833cbf48f1b3c05ae3027ae68 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1148/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7fddd10231ee22b29b561f71f88cc628af33ffd2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1149/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c4b6cd83aa2ca29892d43d7b4b8e69025a0d5986 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1150/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 40bdea4bcd385b143fddcd1ad1034df8aad4d40a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1151/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f86e2df5b1cd916cae08f043f2b584a4e436595d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1152/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae590497c16f610813e9da1907cf2e706371f400 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1153/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e04df78128e9c6323da289b4b5d2f490ce4e4a4e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1154/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2caa78fa1199ac8ee53405d3f084ed7044f31275 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1155/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d94a311d03ae692183544db7502b126218b38ab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1156/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6321e04a792f3be7b432ab0849a223128d80005f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1157/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e57466fdad81a95975bf470646d732e95f9df205 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1158/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13086e28829f0602b6d29bb9d4e74591e2eb8f1d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1159/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1974e08100b5fd503aa35f1fd05ac865d9ea7154 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1160/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3bffbb5cfc00acbc609bdf98cc514dc6ea96ada3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1161/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e0723e0463f5e4492f3ad5d922c1ffe166a4c08 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1162/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eed49f2bf0f249b925cb9cb99490e3afa409688d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1163/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d41b4a9c0df13931323e12737a1eb85e9cd1a822 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1164/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1dbe58de84a67bad329193041d51255736eb7e8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1165/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1cfe7a68cc97c328dad2582a146b40ba5495c3be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1166/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b0e6c0df14bf23957d07ee73ebaeba12ef38d85a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1167/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 78d0b4a3a0ca84e7fd20f3c2fb0b7874eefad4ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1168/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58125be53c75c3f8468c1acf96ec77e2aed1aac8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1169/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6426069730c51c0b80784ca129937e6b63a62d4e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1170/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 142e1dc421457077097604d73ab25b20fa53e7e2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1171/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7442441ad6d7b8588e13393f9ee47a8976196cb3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1172/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54f3475e7095036aa29848f7086aaba994bda3d5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1173/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 496b64d617ff90f2bd7b0b52cc64eed1280cafaf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1174/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5301f0abbeef1466d5e41c1b21395af573b1efa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1175/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 35c547a10df3e58b152957e426c5ee78ee872106 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1176/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c0b31f2ce9071be30feb550a4587aeb21922bf93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1177/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba165b6846c4a31feca74c4b9e2ff16b8639acf7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1178/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba591b6bb0c04a6a01b58185ed23aada80fb788a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1179/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bec44cf7767e97e393299d1e842503a9d1cacbe5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1180/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92dcf84690642b26beb348450ef7e17ed914265c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1181/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d04fdb33a4f40bc64e2ce11abc18bd69a2cec4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1182/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59080fc64ebdca5ede56432b9fb7d32cf4526ebe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1183/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ccf99bdcd73f70ca5d348c3589acc0a2c4cc7e1f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1184/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9f082413739449ab0f7b26dee162aad0a92aa3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1185/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca7e339e066e78304d47b9b8093cdf87842ecd46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1186/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8de25454efa0abe5b6654e153cf19eb39f6bbb07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1187/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8785e9f7adfccc196f21d9c42c3218fbad93ece7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1188/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From baf9ae65283459254bdc676ce8931f9432abc9e8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1189/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9184d291a29a0c38a7b0400319762760be32bef3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1190/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d424d0f8c98ad2a9960d9349599c5930e30157d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1191/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c4a30ce8172d6111dbfeda5a84b0e703fc36e818 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1192/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f8113e0100a326725607051ba776af5a27806e4f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1193/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dbeace471196865f2d2e1e7bef6aab1a5fc95793 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1194/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd8542cc8aefd0e018bf9e785f03f43b0c7d7ca0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1195/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7eddcfc78d9f200fc4b11e5ac644179cacfc6f42 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1196/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c80223d8d9ad028cc57ce0c03ea32d5b6732da6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1197/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d72eb7902fd02d039aff1efa0d5bfe6ae1b139e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1198/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be31617d066e9547fcbf6327315ee8d01d5fca1f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1199/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe8e620d98fe6140bcb08e0e081083f8216859c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1200/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72cd549c1d0fdadde415547420bded63b52ea43c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1201/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a48566b28227b3ce2025b748b3164d4630efbd66 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1202/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2e75efa0c77b19b734723d2e00140390e90283f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1203/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bf16195b7a68a86a65d687f6b5411cefd8e1b30 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1204/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c35b99fa4e82e55314251f5ae56d9cb7e036b70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1205/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94ba815f32b0a78a27888342ad5f4bcc87a90e5b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1206/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0268c355b09e495134a46290e66c5b1211561a5b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1207/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e0d2de4a6a98b2fbf7b8b8dca96ea6b1bd3fd54 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1208/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d071744b3485961117109b51b333a9e9578e39f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1209/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 10489da60edc59f2efb59ab6944909bac5141ba9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1210/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 23c00a62c66f1b8c9d4bb8507325223c2005df5f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1211/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e9a723dc65abf06efeae2f42dd67f2d7b150699 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1212/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1d5df9e21e5386fa73421f375e9790ed5f2abcbd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1213/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26b50929542df45e3b5481bb43529abe0ba5a51e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1214/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26ebacead23eee5f534096cbfa7cba14e5573f65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1215/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d1d69e3b8923b0c0343037fd5a18b3d6d84f461c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1216/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c7803787d25f65d0dd95140850e09306c5801dd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1217/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68bd1de0fb2a7102916de33177fcd7cfc2d21abc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1218/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eced830a1ed88d753ffd964a4bd548ebef00b2d7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1219/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8406eefb7610a229f7e88926ccb3206b70ac5686 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1220/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc4ae8271b0c4d9f4551f2b877d7d65e7c4555d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1221/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a8f79f86a09c5f5fc6f3605e271174ec473b3de1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1222/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 773c55c41d293c88882b828b62ba50e882fd2f8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1223/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae7067e522febc9a8ec243c085bf19a018165f39 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1224/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 62240db0d9c883c8eb017a959c14b63bb7d7139e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1225/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca59fd49c7a473fd65d853668247d3265b8e7307 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1226/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57c0b54843b19056769387f1e3caaf4ea448e4e2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1227/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e978dfe7d49150f6b31c0719beb6b644533f6d36 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1228/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae9ee4d91c8bf1345cbf639e67aa1b8589e6b51f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1229/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f75d7fc52156374d87fa96011acc1d098bc4948 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1230/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29cfb8c4bc35b2598a0e3362a38f3e45a801e946 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1231/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89a1faf22c67a8e8138a35b60958467c2047c5bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1232/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f89736e650587aee03c65f72180e580f1aa3ee1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1233/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 393b69eb92a9987ae81a2aa044ea26378f38ff82 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1234/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5b66a420a4e505a4afc1866706f5d4da644dda0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1235/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0d122cdad9ac4d09ba94df4bdac227dce844a8bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1236/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9add2ab1f74543a3faa3e197eabe362cf8cc7799 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1237/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a5ea7b0b11e4d9ffadaf8698700d1a901fea557b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1238/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2b097e93a087a7b0c173fdf7cd741c2a7205c4c4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1239/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4de58414e86d8c9e9dda3c9ce3e14f94b52d1243 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1240/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 14f752be430ef604d23ca08e6005821756547f22 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1241/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c3874ce32b8249003f5cafcb11de47a8b73ffd95 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1242/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e8e6cb25154260c6b010ec71d9c811e9a3761f2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1243/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 435f9b7d0d589914be170072453d5eadb9ec1a47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1244/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 48c1b5ff82514b53d748c0ea447661620f2e82ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1245/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5dd08ab56544818774c099ecfd6976b78278732a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1246/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8a706f3cbcc9b4c1c10c6c890356924992ddd8b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1247/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7def36a951edb9aed24d3812709ea4b8de56f6f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1248/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 67e33f730388563981c5aca37d28823d073ae0c6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1249/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96fa42db84b194c3822d6696b882684d173b536b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1250/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4b19121b8fef99e8924ecbc54ce66daca3cb5792 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1251/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e9046ebe1d9e7162b95e791dae53fde7c69fc807 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1252/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3d79d2319671a615c35700dc279fc577b3d3377a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1253/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa72efe6b68131d3e232a6a61f9c6261814ffc5a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1254/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ac9bdd4f1ecbb47d0aaed85b52fa7e6b88c1067 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1255/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cfdb31497ed7c4550e49de029ff4639f7795b41a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1256/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a21a441c06a0b6b7bc368aed0aafccdd01a33a04 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1257/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5cd9d115a4c44f21517c5d0c58109ee102776f8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1258/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 04db0b3f7eada1129cd6602dc08ae75cbf351f06 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1259/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf696829e54fd1639703aa9be411d806be0b5ae1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1260/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 09e54daf1fe735054cd71f6131376c8c720e58ea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1261/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 986a5b64bca48bbb4cef2adcc0f7cebf8ffcb424 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1262/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fce5419aad976f4420a24a75cba9a302d3fe4286 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1263/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 49b0dea97406217c5a622895829ed2e6e3244fd0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1264/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 050170b63cf34e6697ceeb4ba30354c2e8350f12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1265/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9837a52434cdb86cedfc2610aed1526489486603 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1266/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b17bd066c8a9b9a3985899ad603ed26527f9d0f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1267/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89663801d8d60c2fff7c9aa6d23c6070e443b7d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1268/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca85136f7fe46fb2c6bfff5be4b59eeeaac0ac88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1269/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95ea4b655a78c9f2a7bd6849c6cced53ab082337 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1270/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55ba5addb2fecc958e1cfc4826df83943d1f40a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1271/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7bf066939d72453f44e7d70a9496d1f868a3f1a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1272/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca99c0819004f8a94c2cb409054aea685b7b6222 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1273/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 411130c057529c7f2c09812e4278967b49d77342 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1274/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f014aded32ad851c7aa1c220783e4d00f820d25e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1275/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4c6b4f678d88ef4b178965a752964b3597b34902 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1276/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf576fdd4ba215083f20e8a6c77240eef48e20f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1277/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From acb724b6d786ec13e1413fc208d49abafbcbc3e2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1278/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5aefab7d0461032fb4a8aa3b021f8834bfbc520 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1279/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54d9358b5e69b6a21569cf8c0da0232341a5266e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1280/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 375342b588419b2e60d72f40098bd6fa70e12a93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1281/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89913810e7b7c4efb5ec971878b18dd383e468f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1282/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86e3e102594083679ba97aaf39791f19059d6ecd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1283/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 150163dc1420a55e64e0c813087b60a9e4f9d671 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1284/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ab5f4eee40424d456f10368affda01889191207 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1285/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0b8170097659d5ca64e85b0a5882f9246db99749 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1286/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73c7987c09bec16eb68ad20c8e198ab7813d2f4f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1287/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8adff98be85195f255748bc83e94fba91b50bf45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1288/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e527713303de3e22630f1bcd84170862d50a89da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1289/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 423707fff6997198343332425c2fed2ac04d257a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1290/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71c726e0268ee75f22f606a4dde7670a19bd2698 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1291/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7976204da6d1e0b95e36e70ac64626d8f680cc05 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1292/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 760c925fea7b0834129609c6de739d1926dd3cec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1293/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 228c4c4170c4904c7db6ec641d9e0eeaef411b33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1294/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 562a0329772ca249ddf63cd484eb39544e761836 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1295/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb0dd821a62f70f598fef43c48eff41bbc9a67e5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1296/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 584a9c9748d5d850b2f70b1ad509aa8e977bfb1b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 20:22:55 +0300 Subject: [PATCH 1297/2596] update --- CMakeLists copy.txt | 152 ++++++++++ CMakeLists.txt | 272 ++++++------------ CMakePresets.json | 4 +- command | 21 +- include/dmxdenoiser/Config.hpp | 2 +- .../dmxdenoiser/filters/ConvolutionCUDA.cuh | 10 + include/dmxdenoiser/utils/NumericUtils.hpp | 8 +- src/filters/ConvolutionCUDA.cu | 8 +- src/filters/ConvolutionFilter.cpp | 43 ++- tests/ConvolutionFilter_test.cpp | 4 +- 10 files changed, 324 insertions(+), 200 deletions(-) create mode 100644 CMakeLists copy.txt create mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA.cuh diff --git a/CMakeLists copy.txt b/CMakeLists copy.txt new file mode 100644 index 0000000..a186aa0 --- /dev/null +++ b/CMakeLists copy.txt @@ -0,0 +1,152 @@ +cmake_minimum_required(VERSION 3.23) + +project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) + +# ---- Options +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) + +# ---- C++ setup +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") + +# Output dirs (bin/ lib/) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) + +# ---- CUDA (Ninja-friendly, no VS toolset required) +if(BUILD_CUDA) + # Find nvcc explicitly (works with Ninja Multi-Config) + find_program(NVCC_EXECUTABLE + NAMES nvcc nvcc.exe + HINTS "$ENV{CUDA_PATH}/bin" + PATHS + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" + ) + if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") + set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) + message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + set(CMAKE_CUDA_STANDARD 17) + set(CMAKE_CUDA_STANDARD_REQUIRED ON) + set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 + add_compile_definitions(DMX_ENABLE_CUDA=1) + else() + message(WARNING "CUDA not configured: nvcc not found. Building CPU-only. " + "Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") + set(BUILD_CUDA OFF) + add_compile_definitions(DMX_ENABLE_CUDA=0) + endif() +else() + add_compile_definitions(DMX_ENABLE_CUDA=0) +endif() + +# ---- Dependencies: prefer config packages; fallback to vendoring +find_package(Imath CONFIG QUIET) +find_package(OpenEXR CONFIG QUIET) + +if(NOT TARGET Imath::Imath OR NOT TARGET OpenEXR::OpenEXR) + include(FetchContent) + + if(NOT TARGET Imath::Imath) + message(STATUS "Fetching Imath…") + FetchContent_Declare( + imath + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git + GIT_TAG v3.1.11 + ) + set(IMATH_BUILD_TESTS OFF CACHE BOOL "" FORCE) + set(IMATH_BUILD_TOOLS OFF CACHE BOOL "" FORCE) + set(IMATH_INSTALL OFF CACHE BOOL "" FORCE) + FetchContent_MakeAvailable(imath) + # Let OpenEXR see vendored Imath + set(Imath_DIR "${imath_BINARY_DIR}/config" CACHE PATH "" FORCE) + endif() + + if(NOT TARGET OpenEXR::OpenEXR) + message(STATUS "Fetching OpenEXR…") + FetchContent_Declare( + openexr + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git + GIT_TAG v3.2.4 + ) + set(OPENEXR_BUILD_UTILS OFF CACHE BOOL "" FORCE) + set(OPENEXR_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) + set(OPENEXR_BUILD_TESTS OFF CACHE BOOL "" FORCE) + set(OPENEXR_INSTALL OFF CACHE BOOL "" FORCE) + FetchContent_MakeAvailable(openexr) + endif() +endif() + +# Sanity: imported targets must exist now +if(NOT TARGET Imath::Imath) + message(FATAL_ERROR "Imath::Imath target not available") +endif() +if(NOT TARGET OpenEXR::OpenEXR) + message(FATAL_ERROR "OpenEXR::OpenEXR target not available") +endif() + +# ---- Sources +file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) +set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) + +if(BUILD_CUDA) + file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) +else() + set(SRC_CU) +endif() + +# ---- Executable +add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) + +target_include_directories(dmxdenoiser PUBLIC ${CMAKE_SOURCE_DIR}/include) + +target_link_libraries(dmxdenoiser + PUBLIC + Imath::Imath + OpenEXR::OpenEXR + $<$:CUDA::cudart> + $<$:CUDA::cuda_driver> +) + +if(BUILD_CUDA) + set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) +endif() + +# ---- Tests +if(BUILD_TESTING) + include(CTest) + include(FetchContent) + + FetchContent_Declare( + googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG v1.14.0 + ) + set(BUILD_GMOCK OFF CACHE BOOL "" FORCE) + set(INSTALL_GTEST OFF CACHE BOOL "" FORCE) + FetchContent_MakeAvailable(googletest) + + file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) + foreach(test_src ${TEST_SOURCES}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) + target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) + target_link_libraries(${test_name} PRIVATE + gtest_main + Imath::Imath + OpenEXR::OpenEXR + $<$:CUDA::cudart> + $<$:CUDA::cuda_driver> + ) + if(BUILD_CUDA) + set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) + endif() + add_test(NAME ${test_name} COMMAND ${test_name}) + endforeach() +endif() diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f9b0e6..e231718 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,217 +1,121 @@ -cmake_minimum_required(VERSION 3.23) +cmake_minimum_required(VERSION 3.26) -project(DenoiseMachineX - VERSION 0.1.0 - LANGUAGES CXX -) +project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX) -# ---- Options -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) -# ---- C++ setup set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") - -# Output dirs (bin/ lib/) +# Output dirs set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) - -if(BUILD_CUDA) - # Try to locate nvcc explicitly - find_program(NVCC_EXECUTABLE - NAMES nvcc nvcc.exe - HINTS "$ENV{CUDA_PATH}/bin" - PATHS - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" - ) - - if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") - set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) - message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - # Good defaults - set(CMAKE_CUDA_STANDARD 17) - set(CMAKE_CUDA_STANDARD_REQUIRED ON) - set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 - add_compile_definitions(DMX_ENABLE_CUDA=1) - else() - message(WARNING - "CUDA not configured: nvcc not found. " - "Set CUDA_PATH or install CUDA, or pass -DCMAKE_CUDA_COMPILER=... . " - "Building without GPU.") - set(BUILD_CUDA OFF) - add_compile_definitions(DMX_ENABLE_CUDA=0) - endif() -endif() - - -if(BUILD_CUDA) - # 1) Locate nvcc (your existing logic is fine) - find_program(NVCC_EXECUTABLE - NAMES nvcc nvcc.exe - HINTS "$ENV{CUDA_PATH}/bin" - ) - - if(NVCC_EXECUTABLE) - set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) - - # 2) Reuse the MSVC compiler CMake already detected - if(MSVC AND CMAKE_CXX_COMPILER) - set(CMAKE_CUDA_HOST_COMPILER - "${CMAKE_CXX_COMPILER}" - CACHE FILEPATH "CUDA host compiler" FORCE) - endif() - - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - - set(CMAKE_CUDA_STANDARD 17) - set(CMAKE_CUDA_STANDARD_REQUIRED ON) - set(CMAKE_CUDA_ARCHITECTURES native) - add_compile_definitions(DMX_ENABLE_CUDA=1) - else() - message(WARNING "nvcc not found → building without GPU. Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") - set(BUILD_CUDA OFF) - add_compile_definitions(DMX_ENABLE_CUDA=0) - endif() -endif() - - -# Prefer config packages first -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) - -# Fallback to vendoring -if(NOT TARGET Imath::Imath) - include(FetchContent) - message(STATUS "Fetching Imath…") - FetchContent_Declare( - imath - GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git - GIT_TAG v3.1.11 - ) - set(IMATH_BUILD_TESTS OFF CACHE BOOL "" FORCE) - set(IMATH_BUILD_TOOLS OFF CACHE BOOL "" FORCE) - set(IMATH_INSTALL OFF CACHE BOOL "" FORCE) - FetchContent_MakeAvailable(imath) - - # IMPORTANT: tell downstream (OpenEXR) where Imath's config is - # Use the *build* config dir: - set(Imath_DIR "${imath_BINARY_DIR}/config" CACHE PATH "" FORCE) -endif() -if(NOT OpenEXR_FOUND) - find_package(OpenEXR REQUIRED) # provides OpenEXR::OpenEXR or legacy targets -endif() - -# Sanity: targets must exist now (either system or vendored) -if(NOT TARGET Imath::Imath) - message(FATAL_ERROR "Imath::Imath target not available") -endif() -if(NOT TARGET OpenEXR::OpenEXR) - message(FATAL_ERROR "OpenEXR::OpenEXR target not available") -endif() - - -# Include headers -include_directories(${CMAKE_SOURCE_DIR}/include) - -# ---- Sources (CPP always; CU optional when BUILD_CUDA=ON) -file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cpp -) - -# keep CLI separate so we can add it explicitly to the exe +include(FetchContent) + +# ---- Imath & OpenEXR (v3) +#FetchContent_Declare(Imath +# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git +# GIT_TAG v3.1.10 +#) +#FetchContent_MakeAvailable(Imath) +# +#FetchContent_Declare(OpenEXR +# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git +# GIT_TAG v3.2.4 +#) +#FetchContent_MakeAvailable(OpenEXR) + +# ---- Dependencies from vcpkg +find_package(Imath CONFIG REQUIRED) # provides Imath::Imath +find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR +# find_package(ZLIB REQUIRED) # usually not needed explicitly + +# ---- Sources +file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) - +set(SRC_CU) if(BUILD_CUDA) - add_compile_definitions(DMX_ENABLE_CUDA=1) - file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cu - ) -else() - add_compile_definitions(DMX_ENABLE_CUDA=0) - set(SRC_CU) + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) endif() - -# ---- Executable (DIRECTLY links all sources → static registrars run) +# ---- Executable add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) - -# CLI executable -#add_executable(dmxdenoiser ${SRC_FILES} cli/main.cpp) - +# Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) target_include_directories(dmxdenoiser - PUBLIC - ${CMAKE_SOURCE_DIR}/include + BEFORE PUBLIC + $ + $ + $ # parent of Imath/ + $ + $ # parent of OpenEXR/ + $ ) -# Link OpenEXR/Imath via whatever targets exist target_link_libraries(dmxdenoiser - PUBLIC - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> + PUBLIC + Imath::Imath + OpenEXR::OpenEXR ) if(BUILD_CUDA) + target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=1) target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) + set_target_properties(dmxdenoiser PROPERTIES + CUDA_SEPARABLE_COMPILATION ON + CUDA_ARCHITECTURES native + ) +else() + target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=0) endif() - +# Silence MSVC deprecation spam from OpenEXR threadpool atomics +if(MSVC) + add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) +endif() # ---- Tests if(BUILD_TESTING) - include(FetchContent) - include(CTest) - enable_testing() - - FetchContent_Declare( - googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG v1.14.0 + include(CTest) + FetchContent_Declare(googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG v1.14.0 + ) + FetchContent_MakeAvailable(googletest) + + file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) + foreach(test_src ${TEST_SOURCES}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) + target_include_directories(${test_name} + BEFORE PRIVATE + ${CMAKE_SOURCE_DIR}/include + ${imath_SOURCE_DIR}/src + ${imath_BINARY_DIR}/config + ${openexr_SOURCE_DIR}/src/lib + ${openexr_BINARY_DIR}/config ) - FetchContent_MakeAvailable(googletest) - - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) - - foreach(test_src ${TEST_SOURCES}) - get_filename_component(test_name ${test_src} NAME_WE) - # Build each test with the same src set (direct linkage) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) - target_link_libraries(${test_name} PRIVATE - gtest_main - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> + target_link_libraries(${test_name} PRIVATE gtest_main Imath::Imath OpenEXR::OpenEXR) + if(BUILD_CUDA) + target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=1) + target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(${test_name} PROPERTIES + CUDA_SEPARABLE_COMPILATION ON + CUDA_ARCHITECTURES native ) - if(BUILD_CUDA) - target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) - endif() - add_test(NAME ${test_name} COMMAND ${test_name}) - endforeach() + else() + target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=0) + endif() + if(MSVC) + target_compile_definitions(${test_name} + PUBLIC _SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) + endif() + add_test(NAME ${test_name} COMMAND ${test_name}) + endforeach() endif() - - diff --git a/CMakePresets.json b/CMakePresets.json index 9c29a88..1bdd8d1 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -33,9 +33,11 @@ "generator": "Ninja Multi-Config", "binaryDir": "${sourceDir}/build-win-cuda", "cacheVariables": { - "CMAKE_BUILD_TYPE": "Release", + "CMAKE_BUILD_TYPE": "Debug", "BUILD_TESTING": "ON", "BUILD_CUDA": "ON", + "CMAKE_C_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", "CMAKE_CUDA_COMPILER": "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe", "CMAKE_CUDA_ARCHITECTURES": "native" } diff --git a/command b/command index 8e982d8..303013b 100644 --- a/command +++ b/command @@ -40,4 +40,23 @@ if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" -cmake --build build -j 8 --config Release \ No newline at end of file +cmake --build build -j 8 --config Release + +# Build and run: +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 +cmake -S . -B build -G Ninja ` + -DCMAKE_TOOLCHAIN_FILE="$PWD/vcpkg/scripts/buildsystems/vcpkg.cmake" ` + -DCMAKE_CXX_COMPILER="C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe" ` + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ` + -DCMAKE_CUDA_ARCHITECTURES=native +cmake --build build -j8 +cd build && ctest --output-on-failure --verbose -j 8 && cd .. + +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ +cmake -S . -B build -G Ninja ^ + -DCMAKE_BUILD_TYPE=Release ^ + -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ + -DCMAKE_CUDA_ARCHITECTURES=native && ^ +cmake --build build -j8 && ^ +ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file diff --git a/include/dmxdenoiser/Config.hpp b/include/dmxdenoiser/Config.hpp index 2b7fe2c..81fc7ae 100644 --- a/include/dmxdenoiser/Config.hpp +++ b/include/dmxdenoiser/Config.hpp @@ -12,7 +12,7 @@ #define DMX_ENABLE_CUDA 0 #endif -#if DMX_ENABLE_CUDA +#if defined(__CUDAACC__) #define DMX_CPU_GPU __host__ __device__ #else #define DMX_CPU_GPU diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA.cuh b/include/dmxdenoiser/filters/ConvolutionCUDA.cuh new file mode 100644 index 0000000..54ca75c --- /dev/null +++ b/include/dmxdenoiser/filters/ConvolutionCUDA.cuh @@ -0,0 +1,10 @@ +#pragma once + +#include +#include + +namespace dmxdenoiser +{ + void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha); +} // namespace dmxdenoiser diff --git a/include/dmxdenoiser/utils/NumericUtils.hpp b/include/dmxdenoiser/utils/NumericUtils.hpp index f07b04b..b27c615 100644 --- a/include/dmxdenoiser/utils/NumericUtils.hpp +++ b/include/dmxdenoiser/utils/NumericUtils.hpp @@ -37,14 +37,12 @@ namespace dmxdenoiser return abs_c(a - b) < epsilon; } - DMX_CPU_GPU - constexpr inline float clampf(float x, float min, float max) { + DMX_CPU_GPU constexpr inline float clampf(float x, float min, float max) { return (x > max) ? max : ((x < min) ? min : x); } - // Blend two floats - DMX_CPU_GPU - constexpr inline float floatsBlend(float a, float b, float t) noexcept { + // Blend two floats + DMX_CPU_GPU constexpr inline float floatsBlend(float a, float b, float t) noexcept { t = clampf(t, 0.0f, 1.0f); return a + (b - a) * t; } diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 9b18f9b..f96d0cd 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,4 @@ +#include #include #include @@ -6,7 +7,7 @@ namespace dmxdenoiser { - __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + __global__ void convolve2D_CUDA_kernel(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, float* kernel, int kernelSize, float strength, bool filterAlpha) { int x = blockIdx.x * blockDim.x + threadIdx.x; @@ -24,13 +25,12 @@ namespace dmxdenoiser for(int ky = -offset; ky <= offset; ++ky) for(int kx = -offset; kx <= offset; ++kx) { - int px = clampf(to_int(x) + kx, 0, in.width - 1); - int py = clampf(to_int(y) + ky, 0, in.height - 1); + int px = clampf(x + kx, 0, in.width - 1); + int py = clampf(y + ky, 0, in.height - 1); sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); } sum = blendPixels(orig, sum, strength, filterAlpha); out.at(x, y, frame, layer) = sum; - } } // namespace dmxdenoiser diff --git a/src/filters/ConvolutionFilter.cpp b/src/filters/ConvolutionFilter.cpp index c899645..7b26861 100644 --- a/src/filters/ConvolutionFilter.cpp +++ b/src/filters/ConvolutionFilter.cpp @@ -9,7 +9,7 @@ #include #if DMX_ENABLE_CUDA - #include + #include #endif #include @@ -182,7 +182,46 @@ namespace dmxdenoiser void ConvolutionFilter::convolveGPU(const DMXImage& input, DMXImage& output) const { #if DMX_ENABLE_CUDA - // GPU logic + ThreadPool* pool = m_backendResource.threadPool; + if(!pool) + DMX_LOG_WARNING("ConvolutionFilter", "convolveCPU(): no ThreadPool available; running single-threaded"); + + int width = input.width(); + int height = input.height(); + int ksize = m_kernel.size(); + int offset = ksize/2; + + std::vector framesIndices; + // If no specific frames were set, process all frames by default. + if (m_frames.empty()) + { + for (int i = 0; i < input.numFrames(); ++i) // Add all frames + framesIndices.push_back(i); + } else { + for (int i = 0; i < m_frames.size(); ++i) + { + int requestedFrame = m_frames[i]; + if(requestedFrame < input.numFrames()) + framesIndices.push_back(requestedFrame); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested frame ", + requestedFrame, " not found; skipping"); + } + } + + std::vector layerIndices; + // If no specific layers were set, process by default. + if (m_layers.empty()) { + layerIndices = input.getFilteringLayersIndices(); + } else { + for (const auto& layer : m_layers) + { + if (input.hasLayer(layer)) + layerIndices.push_back(input.getLayerIndex(layer)); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested layer '", layer, "' not found; skipping"); + } + } #else DMX_LOG_ERROR("ConvolutionFilter", "convolveGPU(): no CUDA build"); throw std::runtime_error("convolveGPU(): no CUDA build"); diff --git a/tests/ConvolutionFilter_test.cpp b/tests/ConvolutionFilter_test.cpp index 2330fe2..788756d 100644 --- a/tests/ConvolutionFilter_test.cpp +++ b/tests/ConvolutionFilter_test.cpp @@ -100,8 +100,8 @@ TEST_F(ConvolutionFilterTest, ParametersNotSetInfoLog) EXPECT_NO_THROW(convoFilter->apply(img)); // Check log - assertLogContains(getLogPath(), "'strength'", "'strength'", - "'layers'", "'filterAlpha'", "'backend'", "'backendResource'"); + assertLogContains(getLogPath(), "strength", + "layers", "filterAlpha", "backend", "backendResource"); } TEST_F(ConvolutionFilterTest, ParametersSetFramesLayersInfoLog) From 8c8085297950f7ce4292526066f5d782e8ba5390 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1298/2596] Update --- .gitignore | 2 ++ CMakeLists.txt | 24 ++++++++++++------------ command | 16 ++++++++++++++++ vcpkg.json | 9 +++++++++ 4 files changed, 39 insertions(+), 12 deletions(-) create mode 100644 vcpkg.json diff --git a/.gitignore b/.gitignore index a20bf3f..754d415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ Thumbs.db *.dSYM /.vscode/ /.VSCodeCounter/ +/vcpkg/ +/vcpkg_installed/ tests/test_files/ diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 5a0cb99..8e982d8 100644 --- a/command +++ b/command @@ -11,6 +11,12 @@ --output filtered.####.exr +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt # should print: CMAKE_BUILD_TYPE:STRING=Release @@ -25,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/vcpkg.json @@ -0,0 +1,9 @@ +{ + "name": "denoise-machine-x", + "version-string": "0.1.0", + "dependencies": [ + "openexr", + "zlib", + "imath" + ] +} From f4bed3e20ece6c31c6b1caf264f21aa8c9086361 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1299/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a490760b51d414f13e5d792807fba267b6603e70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1300/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cfb78263e10f143f07169c6813b6c476c46ef52d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1301/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94cefd0eca56690c7de09e65ea4247fe71df8a76 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1302/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d461bfe34b8bd3826d3393189b1e658ad07dc0f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1303/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aefee1a65358f0fcd2a40d4e336fcd8cd435a38b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1304/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ec043d0ebc443c1b642e133490a5a947bf2a7c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1305/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 869de0ab7c1a3f86589144c07d418d03ca191604 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1306/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c49c67ab21f1f42d8657c98d8e360eb06e03429 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1307/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f4e30df3a7e19ae4008ff46e654f26067e08789 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1308/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d43bc659b2f1e31b22cd5d06ceece338242971c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1309/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ad4a4cd025502072c468fa3db690c1d16759989 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1310/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bee1cf0c79c4fbc508c43d457f99370b7d2df52c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1311/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d3a3cc619d58c4d878965fd01d48e3619aabd6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1312/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eec317731feb2af09706b0255149ea289540bd90 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1313/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 03ce38afc0fe378a8274f6f90df6202de69bf0dd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1314/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0fe9c60b86f22728b0664caac242fc143e59bc48 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1315/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2cd1f368c121cc47874badec257511f854469a59 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1316/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ca1d8465580515790aa8f5dbc9b14e1028cce68 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1317/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 760ce58b6f9e4de2a6a76e114eea7391e583db33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1318/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 702a2c3a34ef12ea929acfb558b7e27048f11969 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1319/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2cd8c2d3ed700c81c4fb838357b7fcb8256b5747 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1320/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e2fb3928c745b9ef4c813e3ea7be20f493abedf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1321/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c2a980b681e63436584b5731b01b78a8b9f3aa42 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1322/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf90a2ec009d7a130413c4da71802ff7c9dad620 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1323/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c55cd6dae6ed93de06b4bbac22d1e63d2dc0e523 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1324/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7116d21526ae0f0606e4f83e7f904aec740e20a4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1325/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c06a19e8efd8c00cb4d076d6ba594a4ee61e1b64 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1326/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c6caad4d98c90727dd666ad53934cc30ed6475b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1327/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e7fe391d4c499fada6ba3379bb3e76220aad0fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1328/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 553edf260fbe3691f825d1ff81e344ca897ac317 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1329/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 534074a61ff79b241f458945366fd35870dece8b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1330/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a10e68b961cf282a4f120f7529c5ba7de518cb7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1331/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93899e0bdf7e7c066cef23479cbf976d09a5dcc4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1332/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf90d1f884ae63d90a8d38c8d5360067ca0a4d80 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1333/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58f6c9fcef2c236a0a2cb6824f32a0bdf30f96b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1334/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a3e94d9db95fe224b92ba4863a777e135287ca5c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1335/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e532fb0f8f5a5f50bc3ecf180d8372097c3ad469 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1336/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f8369d56bea0216c7ecf2eba620d1a54bb59af3f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1337/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93ee6427761a4c0f84da2965bec50b5157318296 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1338/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf8a74cdfe46b34e654d490b7f1b73ce38a8d0d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1339/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 863f7124002626b33567436cf4a4649b60df1b29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1340/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4bed46c72bd88ab5d46bbd11f755e5531577f3ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1341/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f7a3c710dc2997391199216e1d1a250d7badc608 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1342/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b13cfb750394169125beeaf9b28dd283e2436f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1343/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 008c9a95a138795152d92941dfbaca7e24c4b4e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1344/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e7586375197e204452884ded988db2edb004a79d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1345/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13343b5d9caad7d385853e69c9a677098bf5cea6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1346/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From deae1db3bd6b78a03ed27f87eda896d1fd51f706 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1347/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26ad31818c585b3e8bbb68313efd0825161b0555 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1348/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99f0698dddc4501f36b6fabcdedabd3eccdc47f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1349/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b46b953955e9fc29e554342135e283e7a462314a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1350/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b5abc8dfc4e71feb510644ffea6c86ab42b7edcf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1351/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83c2d293555e9063398cc58fad5a1d2937593de2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1352/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 064d40cee507083066157f5c1c184ce09a1f3bde Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1353/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf672cd2fb9d3748bae1ad3bdc37449d77818b43 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1354/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7048c0cecdf62d20eaae907ec8596a2e26433f23 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1355/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9d74d290beeede27d91f87d3b5f228726487d840 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1356/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 141a00738c0f736b9561d82e633953bde6b0b7c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1357/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96b58dd85a84d5c92d1e58ee01d13f27459b1af9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1358/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1624355d4f1194e700939cd206dff2a54ffb9433 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1359/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4adfa9a507d27cfc872dc77c1cf920f033f18957 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1360/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a083cc825a259bb423ace470396ce55d8920c70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1361/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1eec2f9a18402967cfa56bb3be9dcc7a9f1c1777 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1362/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 37f7e8330280cd2733ab3278e671ccb6d96b8c29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1363/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89543b3f4eda4de89c527d5c0318cb28bc81077e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1364/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 18c338a9ea3018d55de766f7b35bf8943b323d88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1365/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 968dfa58405a14c360f709ec9af0d5ec1fc814d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1366/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b71e5009e0336cfc7a52a2d40f21777a6e96c80c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1367/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f6a86af99d12c3a8b3a67af300fdecf969c791d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1368/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 395b9c725085d8dff0570c6d34ef31a0a8dbb77e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1369/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f3735f32e486fdc5b2b640926aaaf786815d9c2c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1370/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e000829385aba894c425f7da6154a7a72e07e6b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1371/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 46fba8733d6cfc5a389fc5feec0b10b74b4c0d8e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1372/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba467f7145194ea29ea984f69bb39cce76e4eb75 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1373/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cbf9f2f253a8feebff4b5e5c4d0b840149e564a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1374/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c57884aac4d078d14cd75bc3c6646c70d8110821 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1375/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82b80a30ce64ee08a2dfe8a66dc44bce6eaa7bc6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1376/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dfa913b4f23b158a7d85b06062899812c10ae40 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1377/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5e5cdf2cadbba034e835c3942bf822d7412d0d5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1378/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..016494b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 921470e5536fbd17c87fd9274dbf4a7bf69bd28e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1379/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 016494b..ea3ba71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b721a3b8fc721b5b89454dc834bd5d0f2ae6570 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:50:44 +0300 Subject: [PATCH 1380/2596] update --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea3ba71..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(DenoiseMachineX ) # ---- Options -option(BUILD_CUDA "Build CUDA backends" OFF) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) # ---- C++ setup set(CMAKE_CXX_STANDARD 20) From c3247f566e34043686cb52d02b640ef0d487b0a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 30 Aug 2025 22:51:25 +0300 Subject: [PATCH 1381/2596] add convolutioncuda --- src/filters/ConvolutionCUDA.cu | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/filters/ConvolutionCUDA.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu new file mode 100644 index 0000000..7a3471d --- /dev/null +++ b/src/filters/ConvolutionCUDA.cu @@ -0,0 +1,3 @@ +#include + +__global__ From d82b229095f8930682db2338dead5bf8ef2eb587 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1382/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c36a3440e1def45e12183f8c4454b21387b41a24 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1383/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d2dfba4c4c73878a4f90af86e12f4b5e6296b4c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1384/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e527ee9cfff92926c0c4b9f6d69e81fd87648880 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1385/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 401041f3f8e481ee372d189bc3399771cbc43c6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1386/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c278ee1b63ba741cc6395da4022bf02382bc260 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1387/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 468aa8d0e51c2c6d84d929f82abca9f1d2d6075c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1388/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f5655c3f70a3b9ef53bfc83819bc879ec2fee7d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1389/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 18a6761b6a9f09d76761f89dbf84a43be8984453 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1390/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e1751d02b41a8ba6ca73f8042382773d32e32a0d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1391/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b93924f65846c0ef5194a0c2dc5d07a651b13d96 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1392/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e72a789c17e36150725dcebd1259fd2f73976c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1393/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb5cde6ae62ad7d960bfca31941687d4d29bce33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1394/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f6754e4ef2f18a85cfe17a93aa75e87bf5a184b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1395/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50f7d0d056b1e55c3b1fa30ab154de5a159ae6bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1396/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 61d5f66255f238d54a3926f20981e8f5de04bb46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1397/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9aab9303296825df73a08ea716c152f14e926e0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1398/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 815fdba8c2e255dcbd390f14da970150dce087f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1399/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2de32af1c97bed176cf2501f7e5f30ec322cb17b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1400/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e6adcdaff680dede4feaffc619686f437c47da4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1401/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 820944cd52d65dfc80298b6b7462211464493be8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1402/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0cbafb9bad27ad3e21ae5ef83284543e8f882b49 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1403/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a347af863d89692a4c195d063bb706e9bf654a45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1404/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7309549f064d1c841a2e574477a9dc5a4610dc3d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1405/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 504f2f122bd438bfe6d6bf3df7be4f9e64aa9023 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1406/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 838a600c0ebc72c2a70904c8d8ce750bc9630ee4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1407/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c5d5203df355f4863ca8cf5c9754fea8f76467e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1408/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a6000e5ac278c9f9801c7981ce765f5a219f3d87 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1409/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 74062be349131a281f02bdf8a664e1c2b35785c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1410/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4f4c721e73919ef4716b97eb4c9e44dc6ca79022 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1411/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e520fb71055abd33a72dfb2a27b299ec1dc6ec1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1412/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f5a10fcd496ec6e4b6e5614d9f509f1f75b09fef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1413/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ae52bc8669109b582e2b48b0eb341828aef90a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1414/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e5dce15620d5b571d8202822a7297e34c346160 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1415/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8edd84c2fbcc37215ddf9d9e30c70a7969f5ddad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1416/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5d94f5a884c0d446254861f419fb6a831738ee3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1417/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cfc97586cb79f7d47cebecf59ff6595a0ec178a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1418/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbc5be8f240469874d2a08c0d5f031855b5f5081 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1419/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e389adf2c762f992b3e6b7bf6f87f22155738f35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1420/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce4abcf12149fd7adc6103fde7b70568f51b934a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1421/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 514942add2321b46d5c40fa92dc24f827d5dde82 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1422/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57fdbf6f94df978d154ab7c7acd7da2414b88c07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1423/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2a0dc03a621c14a8a18c631d89cbe26d330f3f6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1424/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34034a75ec5a39efa993aae9b3c611431a7982a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1425/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d4f672988d58ae0b28c57dc40c405985b59e6fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1426/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 98aab6be2c97a4def451cd7fd3fb55c60a391d21 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1427/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9408b31bbc3151676479d8fa3d7ea7261e098ed7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1428/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 18fa127c1a6fefd0696fdb73f21ccd7bcb0efa35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1429/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 239c6eb51c949f3914a17f01faf0af39baf8426c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1430/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba31f5a14d642896b6a0af8c954671a2128ebb7b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1431/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6877f9b1a1e40e584276a8579d4013af9affefeb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1432/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6de92827c9e798c00550b47a914cf7b016a66716 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1433/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a384cb735a5db00af22fd51982a7fbc1214aea26 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1434/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b3d17086119fe0dc0f68adf6ac812811a6160df Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1435/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d7f6e70fac8eaa245a76d1770e729304443311d1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1436/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87575d127702f57441940d11eea5e674502d9fa0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1437/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6657aec6feb840abad4679d7aa21b963e19997b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1438/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 441e700978d2450511fae04a90773a160c8ad598 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1439/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3291fecfd21d00b22d12627cc14c815251d90bcd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1440/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c9f4682dc0de7a975f2338133b90758e59a236f4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1441/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43c71b183df1b0f0ef842a5b29006bc8861aa36a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1442/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 220aaa9cf78675574110e98e2bdfedef7740db6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1443/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2457b2e0994dca0970d749dc2a5c6bdeaf8a772f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1444/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ac1dfcb1c1b6d1cd62923a82d22e25c8e334f2b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1445/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73778a9bbbdcd85887788f0778667591ff111d02 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1446/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4873ff0ca32f544f48bae904904b355379d06aa5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1447/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 005f418ce3efc1af5d0a0d1f942f664b41d97636 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1448/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c6d6fffaa112bd0daf6053c01dd54f055da9cd6f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1449/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0f51432ab97fa4bf585adb2d32eea524a3b8c11c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1450/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b36077eb78fc0cac7b467e5396fea2688c40490c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1451/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71d2036eb8ef432fcf5d7ba33344ca23d92be7ad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1452/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 471b1fccd717b00f13f755f81f564b9da4cc0025 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1453/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 012d213eeb4f88d2fdb6ddbdf2f2647c8fd5ff89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1454/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9f0c7a935df0a3ae0a98ed730a81faca1ad097bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1455/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e00752af27bf5c4b68a214006920509a127b9077 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1456/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a3717cc4f2c80670def0bb0bd1012ab50430d47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1457/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8232345f0735f1288482d3a46ba794c058be956 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1458/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 60374914899bda36f0b6fe10b65074799fbde429 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1459/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0a2379c44e10c57b7e13eee87597b3344679a26 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1460/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eece27b4688b5acea2ec6deaf0daf775a8571e4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1461/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6bb2d83ba8725805f7938508265680c3144db566 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1462/2596] Update --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754d415..8bcb3e3 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ - +/build-win-cuda/ tests/test_files/ CTestTestfile.cmake From abb5540ef51f2e321bbb897924315b193972609e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:00:00 +0300 Subject: [PATCH 1463/2596] refactor: cuda convo kernel --- src/filters/ConvolutionCUDA.cu | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 7a3471d..e08cba6 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,3 +1,30 @@ +#include +#include + #include -__global__ +__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize) { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + +} From e1aac88c8d2456bc2f1c7fe6cb5fd3d6bac34597 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1464/2596] Update --- CMakeLists.txt | 24 ++++++++-------- src/filters/ConvolutionCUDA.cu | 52 +++++++++++++++++++--------------- 2 files changed, 41 insertions(+), 35 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index e08cba6..9b18f9b 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -3,28 +3,34 @@ #include -__global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize) { - int x = blockIdx.x * blockDim.x + threadIdx.x; - int y = blockIdx.y * blockDim.y + threadIdx.y; - int s = blockIdx.z; +namespace dmxdenoiser +{ - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; - int frame = frames[frameIdx]; - int layer = layers[layerIdx]; - int offset = kernelSize/2; + __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha) + { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = std::clamp(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); - sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, m_strength, m_filterAlpha); - output.at(to_int(x), to_int(y), frame, layer) = sum; - -} + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = clampf(to_int(x) + kx, 0, in.width - 1); + int py = clampf(to_int(y) + ky, 0, in.height - 1); + sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, strength, filterAlpha); + out.at(x, y, frame, layer) = sum; + + } + +} // namespace dmxdenoiser From d23b076827dff9c7a9fd8ca6b99f11849e79ed8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1465/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 97e7507467eefd0d33d3dd947093a561cfcacca2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1466/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e090aa127ff321046dec0240dc23260b03806f12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1467/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f645a6b1d8d368cdc9a08e4ef6a712b0f6d2785c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1468/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4e34892830eba7d633429e774d32b20496af29e3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1469/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 505e1293a4b7d4b468907a44060b67e457398401 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1470/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd1033ef7101d7da38e08a731971a259691daa07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1471/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4816ede41d3feaf1a3c85437b7b64964ece34804 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1472/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f051f0d6294a9513458069a67ab0cd245a35ba3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1473/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 71193fa8384b5354c63152c1d8418c5bf8bf7516 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1474/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96b78091d95524a65f19b8990626bfe45b418dfb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1475/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6cf9ee3ff0ba9f9c0bd5263adca3b155c14d0dbe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1476/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1243e6b5f3c622717393a52c8ab8d92dc86e42b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1477/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34bcdd56e583a6ebf243f58b1a78ade22af5a138 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1478/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b796ff904790cf0ee8e47759d4ae3c7d589859ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1479/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3209f28a4d6149ef93d6d7ea02f69de3aa19a2d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1480/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 20e0b9975e391591e1a46f75ca77a4fa65b85ada Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1481/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be4c95373ce491c87597c8c4f614470aedc34ba4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1482/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1479c2d233536a10dfde5fc8feba03956af07094 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1483/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f81055798521547e75b12ee61af944d010b43a6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1484/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4e04d39c9d17d82cbd971eb1d1988977bfeb276c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1485/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 53d8c42261b7fe4d200e0a641c768f007a8628ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1486/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0b1b8fd2425fbfabefc8319d0d6e23baddcbe486 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1487/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 516aa4d969b58f4cbeaecb19f2f9c69c9acac6df Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1488/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d410a5410cb9e464d058df6bff1a8071ec35739b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1489/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad91f9211f7f3609420dd3f2dfbaafe639419dde Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1490/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From abf9a1153e9839e1416140a2bdb2622d0fb62b7c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1491/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0aa0def37f9c491df6410d66c5c13d821bfdc1e5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1492/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e669aa8a9a076bbec8789d56d7d8c314f232660 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1493/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e48496ee8dc566a9beadd5224b6aa04c552da6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1494/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96e9e1af3787c79311e776f9b25d6585366a8a06 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1495/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7a3b301b1546743d049a53343aa1a22df22a4a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1496/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d77caba06002261e718aa55bf4b038b5127173bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1497/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d79c33aed8016e64e62fa1c5a58e999a2502e16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1498/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 872df6c81185a9457c710d4e60e82518975616bc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1499/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a070cac5451b41699c545f0ded0719db00e72519 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1500/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8523324b3f3e3a43b868d71c10e3e0f0e36154b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1501/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db4b755896f5ac1853013b310167c5d067255637 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1502/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d2801ce2ea757f4d6795c3fc0691ea88a097ceb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1503/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bb30a506210fa020a345e2b188a708889f97913 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1504/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24a473e73c4a4463acd1294f4654872d732e4368 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1505/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 70a7f6844448c28ef4a9a7a81b5d5734151abc7a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1506/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 938fc43894576e7c88a8c716738eebd37b8a1d8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1507/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ce54440bf47ffcd248bfc79f0dbd1f295bc85aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1508/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66a38979c8f542002b810a100519a23611e5374e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1509/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f9f3de67db2f1ff6994bab1e6d49a8126b9745d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1510/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9af27093dc4499d9f652509ea3a6c85df6cc717e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1511/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c11849f455ebc161f9527c587dae88d4cb8d2544 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1512/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba23482c28accce6c454dc063c49a01f3fb33d38 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1513/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f141425bab77eee23f4fe308c2d44a2798c29f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1514/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24927402821ef2750d9ee89dd458429e5b2f9572 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1515/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 768cca9323eee85f37092bf3866f4be8ffde536b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1516/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7ea305bb14afa7e02c4bdde97f122233edbb599 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1517/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9aac2dba892edb64208e799973751a8b82219526 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1518/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b87986e0b8dada85d3d4b4668cd2d92a30b859c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1519/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a88decca9c90d67e7fc9a0d38d000aca3310f6cc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1520/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc651825e6107d5c43545a6388a05a2343d1afe8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1521/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc7afd2a24783fab0d4e896cdb876656e1c9e47a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1522/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 297db2da17795c0aa33269109472148e1a054dd2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1523/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88dc33797241b967403fbd957ed179ca93804b6c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1524/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d3489dd4ef43c028bfaa5cff4e77a75361c705c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1525/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d19575e1aef8e74d4d457eeedc9434b0aad6778f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1526/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a00ff4aa6bfa91df7b89183dd7442b5aa61195f5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1527/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0fce9f73b95e3b51b9ced61ebefb835415bd05c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1528/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 53f0410006bbc21c293ba320b96c4217a1c18839 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1529/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5534948055830165b262710f5d26ccd7b7eda67f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1530/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1084e74181cb083fa29586513d58d59f99084bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1531/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 69bfab70beed684cbf4b6b420f3171b515058400 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1532/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b86e9cef9625a1266981142dc512e4f1b0f0f348 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1533/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1c1902e30737f288b5cf23b9b6522782773b944 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1534/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f82b8cfca3456ae7a90aa07530c9d164722afd90 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1535/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a0d6f699444a2d909d4cb6e0296e229eb8e47c43 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1536/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 679e7f27cdc8d429af8950d00a3ac255d05f5b82 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1537/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99b3dccc31b1285b485099214ea4ac00f336cf60 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1538/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 65f5939e4d7fe858ef486242457828a038fc5df9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1539/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d79f6667ab582056e837a0917c662b372b86bfd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1540/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 30445b3eaded7e0ffca018690291f34a6e8aee88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1541/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ef90e8cc5aaf57a2944f7ca977a5c7a9998deca8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1542/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a95481195945ff813532674954fd3609fc91f535 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1543/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca461e08dafcc558188528f53e5b7e8b248efb84 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1544/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1055dbc4e78ea3711b6cd6d619cfa2da167a1730 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1545/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9404e3bc6558cdf5ad6ca7922fd8e9496503b77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1546/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 031e28c184775814ad8aa967c44f896f0347c5a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1547/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0360419fc373cbf75c27f6208ad15171aee97f1a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1548/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d99521720b249e6b1029145897ff15b11a4e4ee1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1549/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 920aceba0ce9fd21fc228b84195643e45f1dfeea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1550/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 102a6d8727cd13d7f3d02164ec9ab0ca1b0dc86d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1551/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4bea3b2039f7222e7413bfc053bede203bd96ca3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1552/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c55bbb527efcffaeea690dfa4d050cf9a058053 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1553/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 45497350cd2cc562ad105eaed5de71d3336fcf92 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1554/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 479e3da9a7ba0198bfcca8f6c6847bfafb71ba5d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1555/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e1f02fc2a8af2a61eb8eb02dc772c45a5b8b29d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1556/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2779fd42724e7f0b7ee4dfbffcfd60f7d941302 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1557/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 219f78e2767e5e6857527369bfe5b7f7ef2468d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1558/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce7607b67a64f05603c8a5f95a2c7ea419527f4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1559/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5dfe45de97324c689075dc57831b8c25436b6de3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1560/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96efd68c26be969f010cc0f75fd63600b1cb8adc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1561/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3754a00637dfb1e527c80bdb45f92ee7ae80ef54 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1562/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b466e7d10c6afa79fa75a044eec76aa7bec4caa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1563/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 305fcf502dd6e97c6c5a702b89d3b3248b0cbf80 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1564/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9dae5863765116ad3aa035776d71319f8018606b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1565/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b311a974e5b697e01a1bb9946909185f448b093 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1566/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7202e81fb5a8ee38ebd25a7661e63fd523664918 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1567/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c7ea664175785a6173a3aebb1b0969c20a70726 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1568/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13b2c554822ec89fc5468a2ce12a237be0b1ab8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1569/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b66deb61ff3601385d99154bb9235f010ad5354 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1570/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dc8eb506d8b16c7ba61f86e4d0bb6d9121f041c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1571/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7dec69b35afb795e3322fb5614274ac06dc092d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1572/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba46e96afa30b356e426dd92c7a2a37442fe25f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1573/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 284307d20db2d6abc9d940f7f83ef7306996b844 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1574/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be25dd378d9753541a1c340db8dd91b7257d53c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1575/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83c2ae4c1ad657c35144403f9423d85f85b4706a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1576/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1c96e22a84c4018b25f90d70a30f9cbe619ad91 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1577/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d3a091cb9f297dfbd2032c462a65b2d07ce355cd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1578/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 393aaf451e8f7579e42b5b84c76cfa9b828b8b19 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1579/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bae40f131c2425ef8b2e04867f9f5c0724d077cd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1580/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7873a19762a501e5b40e89bd55fd24e8b4f4204c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1581/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e2e42a584c50cc32d61f7845c46c8b339fdfbe61 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1582/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae26d10576ae1f66eb2d81ccd2e6dea44fc7c011 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1583/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a8739bf6c2fdbff827f24b0db21fb18e53bedf37 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1584/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79e6adfa8a32a243efe4db97351cb04af28140a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1585/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From feb7b988d166eb7da8aa5455d977e03977cf2a4f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1586/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d3d14cb42630857f10b1a27c65ddb7ef876a4e20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1587/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3256a19d08bbeeeb8bf3c83981a4b9669e4b8f71 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1588/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13f541eca18fde6622fec7369f6dd4c430c3987a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1589/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3176bc0b354ae7f14e18ccbde5353f367f44bf8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1590/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81a5448c5221a5db8567630701b880fc6e6fa12e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1591/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be637cae46a929ecccf1af8fc870b93e94b33a54 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1592/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54f0e4bb0f8ea3d0eca266278c661d920b61d9d7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1593/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 22815108d631b4e89ab24a7107df6a41c8533690 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1594/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f0a786921549ea40e21f94b4fc586db62489181 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1595/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7ecf501951fbed9dccb4109c5621133b46ed80a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1596/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96eb4281997d6990f9e3187321f4eebe9f0799a5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1597/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ef5dc8b7c495904d20d3a2a0f7eeac9927bb39d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1598/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88060d350e1ab934bb4f2bd3f8cb6bf597799b8e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1599/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a0cb39518c40bcea5192f6d88bb45abc9ed3bd12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1600/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dda23d2c0edc3c5a8c224404b4207dbff2cb9f46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1601/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ee6d8ff189a22a0813ac37970ca92047ddd302a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1602/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1203df127a4f48ab8ac7de32fc7db0ddcb651598 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1603/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 589972a869d346f6b673dbcd3f99de4521b677a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1604/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4179c88bf255ed88cba158acc119f0526e5d049d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1605/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64067af99a2048e31068968728753663604fda00 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1606/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c722c1c8dba38f3e3fe66055035463fa33119bea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1607/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7508d22583dd2a1735e174cb4ac1cf8ca123d46f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1608/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce751bbcd970299ea7aa317c8e7b029422ba5ca1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1609/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a6fa5d72df3bcd32edfa72ffe25c799bcd0ff067 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1610/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5393740f308e15acb0b02b0801147cae3c50ca4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1611/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f04583729b924cb17a000ca3e7037097c348dda Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1612/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1c2bbf7e4f79ef6dba5f93837f71a49eb90a9560 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1613/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3373643a4c174c123556fc5599c6dafb6614951d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1614/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f756f7960bc3ff02e49e02fdb05fda48b32223a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1615/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc7c67aea0acad1f7ef71f74294d37746f7bbbb2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1616/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b5f6c44fbd5a2dbcff2d246759f24cdc560df7b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1617/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 717715cde33e64e379d1816ec7d95c735a18372e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1618/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5ddb6d624ea97d0271a73775269609c4b6345a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1619/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 76037bd41ccef161f20cb806dd50c4e7bcd8e84d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1620/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8c3bfc0e7f6d515438bae33419c98a330659257d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1621/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cef963c1972faca8d1713980573185963e62089d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1622/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1469562024fe0c687a616b07be45b93575da92b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1623/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ca6c6f8e5612da5a1b704e1ac7203fddd0ca4d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1624/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1332adc6d0f6c188925c1665cc6230b9fcf93541 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1625/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b8cf7825e9599a36e97f5bd1f43f8e968be8724e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1626/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29756323ef39c593e8d4ecd4f430943df470d465 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1627/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6da707ebd5e8746ed3dc0b983fd93ff70e163b8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1628/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 19b34405a557dd77604907c1cb8bf19aeeb5be20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1629/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 45ce21a86d4fefa22f8ddf4bc3e011bd3b49784a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1630/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99b54b6d6a3eb49dc1cf81576ed9fabbbe7e85c4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1631/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c47509e12b08d464ef745f5eb2b120db44975762 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1632/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d28cb0688dd566fa0171d9bac6fb87f6dd09ff53 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1633/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8c139527d3d76be1d0cccc176bf677856ff4f31 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1634/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93d9095f0654c9db1c787397a71321a60b51ca02 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1635/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a346d7f79f978fe67e944b8053c593299acb2d51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1636/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 85efa8c440997dd3661263d6ceb1839bd46900f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1637/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59f79c3e1f05165e19658b117be0872cd02bb43a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1638/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 42b678b1c795e2268e47908c8ea191af4c4e4956 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1639/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0f80ac33ed66cdae90a09fc424c5cb16f72c769 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1640/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 02a9c9a079b19ce2dea95abb404be04dcd1e2961 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1641/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 928af437322e10e04f8b9ce78c8ec6a423bebbd1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1642/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9bdda0dc9b8d4709804956d7300395f8b1d6909a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1643/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebdd47db4be6ac9b36d62e5206453d149f8e539b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1644/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 434ae42eac253a1d7dcd4adfe52bee35890779e2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1645/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64a38360f5c32c28b07553b9d11b62a7630f6c8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1646/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3868a9e0ca58d139512cfdbdf1b48887708eaec4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1647/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db46c7a6769af7f6fc2d95d5b0bcf9e473e7daef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1648/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c94c96b5ca99e9a1f4b894a0d344f74206cdb7f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1649/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 107ceff048a193da2d925efae5ac74687aee9122 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1650/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 629a5cf9edf71100c99fe6fd8832795e756e4fe6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1651/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1b257f5b00b38d59a5dcf1ddfaa273366f19f33c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1652/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae527c78dc8659ba633d9d8faf7879fdffe48bbb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1653/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d4a938512440d172f5f354e0e2612cbadafd51fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1654/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3361567cd501ca8fbfcf0ed7b8f6046fa2e41cfc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1655/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4b30fd96f0b18b279ee01a1764c35880c2c6ac3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1656/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2eb5b6412b5cb82569ec8dd23bc75b8d76f24b4a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1657/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9fbf31f1a32b95a2337772edc2f4c2be9b72379e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1658/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4f5753aada09ed84127cd41cf221f6838157d77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1659/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0ea635d2204ec1f376c7b4d7fd7b7250fe57eef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1660/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b88908d49cac9db0d36c2317fec57eea9ec4a33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1661/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From afea317bc748b4277262b90bc52709fd0908395b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1662/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86d8382dc5b61c9cbd0b1f5fb4425134cbfd6451 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1663/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5bb26a930bf6f3e6945a67e4f4c0569531ee2000 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1664/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9def4e408a858808842b9df6d83cc302850ff109 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1665/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fce362c2c42b6994f0130b8ebe54522600e36316 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1666/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cde00aeba9828a6adc12c8741cec57ccc59ae18a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1667/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0bcf214d7f88fc5f4762108245527442ab57297 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1668/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e68e89281674f3d0584a6da79eabe7de07eb210d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1669/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbfdd4ec7327cb4990e57f1516b2d70e51d60f2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1670/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8100ec1bae3434db772964d0e86d6bdf4a2945c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1671/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8fb183a0264c59c3be7fac1ba0bbc8ea8ac6bbd3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1672/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5a7899d53aae2dc5adc0ca46b5d6909c070e29ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1673/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29f8b398875d7733b540621959c3ce8f74c91129 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1674/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c8666118539b77636738fee8643110d388d455ab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1675/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 530c6967b6800eba11bc48480cf14a19979d5627 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1676/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2aeca636ce91feae659a4497b9900aa60ad8d3ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1677/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f3e031491d9a0ef06425045cef68e4a1be755bc2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1678/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5381bd4a69ae6d2fc0329fca41a86379acad9c21 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1679/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b16a69cc9c7f2fb362d308c4777e838d236f5ef9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1680/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7bd33dca0a9f8d789920d9ce6160f5872b7e63f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1681/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63eb6d138ff2146bf262fb9bc471c9543576c8c4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1682/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dad348961e3dd821c3dc63fc0d4cae4dcd5cbe46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1683/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1093c7870b95df9a3cc1859860b942c416ec74a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1684/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4aa979c2ade67aa12c75783e95a99c24ff408182 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1685/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 676fd0a577472e40b152293a07e2f5c446186dd8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1686/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a54d673d032cc01caa93f92a240fb2d281ad2bc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1687/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 72716c5bf41261170f723e37c1bb47288f8bb35f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1688/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad3464f863fcea26fde6f3e5af101b1691c61538 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1689/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a5d6dfcc42a426e9a9c03566103da379cc32eee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1690/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e483d4170b625502b061aa264e82d16b542567b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1691/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7fb426b029d46e883e91368eed0c8a66758a410e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1692/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3cf4958efe8fd8ebf99dfd81e1a8e3adf8758d8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1693/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 10f5a95ff5109a6f9855f05c0022f0f2a7b1f655 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1694/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dbba1e4bbce27b248e3c97dd2eb5b4f083ab992 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1695/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4bad0128fa581a6296ec1426cb4437e4b60833d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1696/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 786a98dd3e3710889420b6ca3b6c66d9cb91684a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1697/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c359f3df747fc8a41cb77810a1997e22d2d1b23 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1698/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 01729c43bdcedb12e416c4353e5ca46decad2973 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1699/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e8274905a504a3245b0e777127dfe77a233d9100 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1700/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fda5e37f80ebd402c52247aa5c620b8e37205b8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1701/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f81f58d5088fb05dc6a74f296ed0b4d7f44ae73e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1702/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e67b35b7913c80bc0aa31eb678c24e6101adb532 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1703/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4e97aebe05cbf52b2f8ed3174e97b20a98b5c7e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1704/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7730646ff91d94622297d51e1e203c162d7ae1a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1705/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 466bcc5b9c9213d3a2ac0223a2df8c61d2838f8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1706/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab83227a7b451e43b0ba72bbd610fd8ed8bdb599 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1707/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43fdb5196b7b73ae9635426a74b513f3375b9fea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1708/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8eded2b6a65285cdd045167dfb7d9aaf8156ade Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1709/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7840a9a9b5d1d9a54baace5479603db98c7e0ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1710/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac1c78a7d086d627a69281ed3256b6caf4c4f931 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1711/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1ab8db9902ffdddfeb24e254f0823b535b3047b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1712/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ee6b6c66db945b71c23434e7273fa92e020cfa0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1713/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 16033095baa29936c047ce1db493a873410ca02e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1714/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 25b0419983b0fc2c01ad63d0cbf9029c579dd505 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1715/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 612f7acbf2594c25066ea5e05e191749e1b2b44e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1716/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ea65f9b8a77f6d0ce179d92b8100fcc12930f1f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1717/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50ef02030d22df52475c714cd02a5af3e183a719 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1718/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 543d21644070d4d584fda358e15d3340b6354c4e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1719/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd75a19c0ee32e6660746bb2548b77f2ecd84d9c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1720/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68a09a46bbbad66290bfcc01a71f97e45dd61644 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1721/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e7ecc345416de22ecd4e4436164b51a8bb8fdca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1722/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd343e9b638966212b8b7137f05909c06195e428 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1723/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c9506ad667a326318828b347a557ed930a419539 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1724/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8cbab361cd078d3086e8793301fe62ef546dc7ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1725/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 696428edb7ee8712e4d4a95a3442e4517713b592 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1726/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 802523c7dcdb664bec8ac4e12bac80a4f4e2dce6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1727/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f43a9ca32ddb7246533254ff9ad1262d7e9ce9c2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1728/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 23ac6a6117a411081ea3fdefed3f023c3cd0b0ec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1729/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a5322980fe0ab1443403e300c4e64e02c0eb7ccc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1730/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f74e3ba32f2fd4ab9880e3cc6905b847b93346f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1731/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95b8f29205581eaff965ab758d31f72f92f1ce65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1732/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4e7841ca2b3841a0e797c1d1ca34c014c05a1a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1733/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e556c66004dfe5bc35da014ffe77a29d39797322 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1734/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebef5cb48d4cc2292b896cb338ea40062b420c6e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1735/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1be51f5a16a8ca420cf7b573b45f4e897cb681ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1736/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86c67c6b33ba689dad1b83f1d8f4e2250973c1e0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1737/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb9579d5696d27a6f31d3b30edf021747cfdba0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1738/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cd0c9286a1fb55741ec1d455195fb89e060e7df6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1739/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a20cf07e0661d52df91c275250b80285e3cf14e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1740/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 418f3544ca260f278e47359007a1d9ea259d39b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1741/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83ebbfd80e61f2adb1bb6363c56f606e944489da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1742/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ae22bbff4f255f1e66ce697bc549cbc2928c0f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1743/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8153e9864bfdb181e629e961c9e3d5c088b4ca03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1744/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4eaa3f71e02017b4797409a71ee7a53da1b5a490 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1745/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fad9d22532d974ef5d9cc91d920fb273a846a81f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1746/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 21bc006899c009a75f3ede0f057246324fddeb39 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1747/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ae386d18f321c8f0ba072d3446301496e345571 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1748/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5c920e634d1f25fec65adda8759199c0e946873f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1749/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dc4896e5ad50fa193eb51368e664ec400ddfbe8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1750/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4dd36512d418018d4f98c11191b0907ce400c3d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1751/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f076c46610ff629d5b50046cb2e4378731a10ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1752/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c1223d6a12f797deda06a96da8021c49e9320c19 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1753/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 492f6dc321d4158c6819233a6d2675e9cb7ec1ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1754/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6515dd69092c204b81c38f0018d051e183916f1e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1755/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f164a7f78d9bba61bcc445f57784c5211ec591e3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1756/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54b4a7fd5d57f3d051d8af4d06cf19e22d9039b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1757/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db11b8498e54302f4e4f9fb3f40458f1c5749441 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1758/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 147a45fa2cd762ddc0b9a06d100ce613ce3ddd45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1759/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae1ce61336da4a858e1d5366668afcb64b6a6c79 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1760/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b558760d22f3049b3096fbb3ae2fc107d7e73340 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1761/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2e2c6deee6cf9d28fe394696d9bbeaf85a083bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1762/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ce91c5a4a68df9a09fd859b9aad9639f4a0129f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1763/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 550ea80e4b7da4edc3ccdf22596f00e7629274a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1764/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 559581a26597aa36f0849ee6962e465e94f17b4a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1765/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From abb6d17e9b268dd2a0445ea0d9ab433b4ac87b47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1766/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a11bee1860713a48bd2bb003ebc59e280e094e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1767/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 10b7ab164928fdd144fb8445919b103bfa1196ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1768/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2a0bc404bcf2235aa0406307aa12ec3c6b0f060 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1769/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f531dca2a989add60774549da11a2ea7914b6c63 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1770/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dac9b82cd9c97e7f22b336ad00429b8399463680 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1771/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e61669932df98c027a3f5aa92d14154a2bb21ba1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1772/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93ffeccc6fd8405c935b7b8ab2b86f06f00c72e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1773/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81bfe934ba48d4a2b83ccfec9804db041ab11eec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1774/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e57758c74294128c06b97587b245c6be73179b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1775/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 149d80c3742cf88a147f5dd682da90c4d869d61e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1776/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68f67b5d74c2c3295e759657008197db5850f406 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1777/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd5a5665697ddb460df6f932d8c7228f1aad78c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1778/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92545af905459d3e4f56569122aab5e051895e27 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1779/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a122a2e75d010008f82cb880f74c791dbfb1f0e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1780/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 972d5e06c4c812c25a78968c895879b3c2b91dd7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1781/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c784d7202bc1d0cf62bbb4a04708bfb9d26d26e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1782/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e281bb2eac77f34ba573d6efb4044a2357fef9b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1783/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0534514909fd831fc765cbaac60ef18a1f170bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1784/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87b62bfd1c0b8e687ffc6dc3efa98127cd1a0910 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1785/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57d0a0a49c9847eaae7f4c64a11ac80559baf665 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1786/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 73db8427b2606e5ae6bb208eaf991486eef4bc32 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1787/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a2a910ebc3c8f5c9defd8e36ce34be963d063d4e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1788/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e89c7e1e65e30fba3edca1da219974e31e44d0c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1789/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f22ed0e7ff42f51ee8c16c9461d8c391ff453c07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1790/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 594b731ccaff8093e400f59dead6e0612ae64438 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1791/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b39b38fdc15413ce5e2d63673febe93877ea5d8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1792/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 986b0bafa8bde34ea105435897d14c72bcdcf6d1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1793/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13e1a3420ef4a1a96fc1e05f65e8f87fb89971f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1794/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0fdc2fb84d36ee4c35555a3c4c8a80cfa97184e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1795/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca67cd92a7117ed54e49e94ce3bba054a90186f2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1796/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92f602aa6c6f65e65bef4d7955adbadf1f31a77f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1797/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1446b5ee66028a2a6fc7ca0fb5b291795859bae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1798/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bdc3519783d1fb6792c7ca262a255f2b394dbe38 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1799/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94e8a003d53fedd771a6add0473bfa16f728d386 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1800/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0fe03511bbe56853c96a50bfe3c065992567042d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1801/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d1d7164efe2ae519837cca01131f67e7451a7ccb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1802/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b9a52e71d67c49f7196d2c2fb9ddcbe7f8fbf96c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1803/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 610461587dae4dc32a0ef47aabbd45fad008fc20 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1804/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9010ff8b85921a09a9f32e5b9d0614514cd5a16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1805/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ca1cd25a250575dde2ccd2c8ac6c1019c1ebb8ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1806/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26f718a0f0ac3dc29e860d1dde0b25efcf260fab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1807/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a9b716f70fdb3e8a1c48328194c08f54abd403e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1808/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0497be159b04a3e33219e0bfb0fb94b0f1d8dd09 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1809/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f7af03bb9628695a056c18e724d8d5af9932ac2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1810/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8fbfc48b1c5fd300c60d20104a1fedd70133e12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1811/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 634c6a12f00dd6d6152cc71950157ee890562ba9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1812/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 784e68d18463b53c194cbf12379c125bc0572561 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1813/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce9e902f90f36fc9466133a17612a4b83088a642 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1814/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3d75c72fc856f365f2f03bd7f08a363de7031cc6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1815/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5573b21f7655899b62cdd2b3c04a8c585a4dd61 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1816/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 980744bbfe7fdf6e20cd866e3336736f7d86a7f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1817/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c98c3681ee6528e25cac19262b8c59fb8780492 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1818/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8edbdd9d2aa454e97f2d6c992ffbfaa4c6ab1f97 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1819/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 56f3dc2f88fa404a0d279c9587a835aa36ee7999 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1820/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d7c6a600f87619bc675636344ee378eb91a159a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1821/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0eb55c04e5ddc5e02db2c9a072567c7a08942feb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1822/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c754ff293232724310e47970038cb63927a371e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1823/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 80179acc317f39f8dccb323c00f7068e58e73351 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1824/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6694f2530c50c60fdb657fb9dfe20833bce5b1b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1825/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c18df655acb37722b8a6dbd2cd0e3bc9992b8bdf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1826/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ea94f49080ce9475e3186b87e086dd52c60d83a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1827/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ff7a94239dd9783470e4b6d6b97c5c5b1db47d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1828/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68b7982894a3dd92ecd882f9db1a45f03e5537b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1829/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb78e9970ac2dc0d487d9e9cab2c8b8e645cd5dd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1830/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e51a038e4d849c67b028a1d63f748d9144466c98 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1831/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1c94cc13537fd3d0eb1bd6dcbb1855aaf46fe7b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1832/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 99c57708858bc0e4da886898ee01aac50ac7701d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1833/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51ce8542c05a5a88fd99859e8b2c834898a61372 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1834/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbbd03e15c1bc584d044fa439c8de65c1da671e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1835/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e60e324dadaeae8b5d7693fc60c33c088468372 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1836/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7cebd3ed1a4a06f527affa639c526fbb1193aec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1837/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b327aaa342bbe148f6a9bc90202454d457fee9b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1838/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d435920f813fdab28da7f67580099463c8fb2ac3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1839/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 62b8ba03c68988e7d4e596ed789f2c5d5152c690 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1840/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2e7d197b20b9892756136546832fdce4c8bbe739 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1841/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dc36d8594c13cc7027dfa3e817a8909ea6045f8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1842/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7da9e0714a981874c2f6955c4135d6dbec3d84b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1843/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 051e215f827375376c4043599bc5ba9551345b64 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1844/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be2cfd0f26135355d12606632ba7b32475f0e354 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1845/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e988dd3e5cbde13abeec6a4bc75d82bae0e0e2c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1846/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From df30d2db7636fa5de7804ed45b340c12c456916c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1847/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 36113b0a2739f4dc341ee8913c3eff67eaa1b474 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1848/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 666d1845ee0e1990d1cf700857b69a93a0be8a28 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1849/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 04af1aa29350d72bdc62ad4ef2e2110c1cdae1d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1850/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ec01bf2b19f91c90a1253e878fc6f45ca0cbf86 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1851/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae3c63157c3b91c9bb11178cafb35a41caf288b2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1852/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c4d202dbe3aac6df27e0b83a81b760b0ba19d39e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1853/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9724213033057cab1a21cfcbdf8c3117fd61398b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1854/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d465a909757c395089e98e1bbeb4a0719996ff80 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1855/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf2ab5680e68b16aec130be8bbf3ff3d394bc2f4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1856/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 85d8b81633bf093f8f4a6a60c10c6868c884b4fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1857/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 14bcfb0a21a8037201a8b86ff1044e7ef3f9b312 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1858/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b75a584019ff62bae65234c0963863942dbdf6e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1859/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 150e581f8c89e6549de5e7ba4d54904a20cbcaca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1860/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3173a0bc04ed299a9b6984eb4e8e21a0d591f7ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1861/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29101ace2c3fe52d469738b79c9924f8fd29dae4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1862/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d65201152326574a4749aeaeace423335979bc0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1863/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4dcaa02043c442c5c35dd075d95d252a9f358cf0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1864/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf4b2d12e11a9effde690843f617ae6ddcfca3f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1865/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e310066e43e646d43e20b1ac39b07c3c4fd1d559 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1866/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e003c240407a55c407d976a66c7228209056631 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1867/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b4ad60a9fe35cc653f771d59323e4bb650cb6be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1868/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 876a43a3bbfb2bc9bd606023765fcf30d48102d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1869/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87fca23a86271f1587b5f9c989340c6b43c94fcf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1870/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b21c1bce1285c492a2c2089ccf5f04b79b11cecc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1871/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38314fbcf52f67f37e949208f63eb0a61c01a5ad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1872/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81ffd1cba8c3b9f44ebd0a9be90e4937e567dfd1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1873/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 883f4c0f45f46efa98a3ff692d5dbc8387e968cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1874/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3087d5fde5e8aebf6a2fb30c85f98e467dfc17c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1875/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8c98a51af21a3a9e0bb58dc04cb28298b2817dac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1876/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81c1259be3b7351d693e406190a4b7ca98422456 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1877/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c5116bb86bf11b0c1ea959aab9884045dc0f8345 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1878/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e5e170cdf467c5c51702b0cdb5c31242f680a03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1879/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f980f942c4b5ffbac34bd05d0c16e8762c735469 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1880/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dcdb3894eb1dda7555498ee98b1775266e64f45d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1881/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5a1edd9eff68943109dc1597909208c32d6a8172 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1882/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4c85a8ac4763d9f0c4be2979971769558bb55fe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1883/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cdeca597f4efa42bf8128dd7e18794eb1f62f1c6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1884/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 42d19d704aacd533efcaac7dfdf20a8fda842a79 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1885/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51f2ec577a3dace1a24d5437760acc7c5f37dfec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1886/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 955d62d16099560172d3a2f1da8bd0d10b591e9f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1887/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 55f4f3f7eeedff515b8b4cc22695b962e8b8fb91 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1888/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff97474389983d68eeec26d9bc123eabc9e63822 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1889/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 405d1e4b724643ae44d9b6a765fcd7f1439da919 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1890/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 56f7e437a490d22ec04e8980719d05554463de0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1891/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ef89c438261f78d3d697eb4f6f4d0afacd6510b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1892/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d15d0bb043d0c25a68646453a9844973d23503c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1893/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 44a58ac9cbce44e5e41674eadbef7ba0f4b97fad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1894/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b0327caf744c5be53dc04342ef4728dd93a2b16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1895/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 10c7348ff9bb0005f384a9a3651e354327feff80 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1896/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b59c30208af77d2772508bea640162dd046c3702 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1897/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 31f890fca2c2a7896b92494d6a230ebc1e232358 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1898/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2f4d30e8d881db9e385a11d8a513ba917a908e65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1899/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf8192004cbd7d0e056e87a4c9cd93e9d7642b2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1900/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5dc8eac3f88d8417986991aed4e3a266ea28fe47 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1901/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b8cf31872777818be8375cf54fa01d026d604b40 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1902/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 143d49882ad0eafd95130177ad46a869a2377a81 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1903/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a448dff57f5bf07b4d98e501dfafc086c2c5444 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1904/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2412a446d9f1c637261d5ca3fb54e87fac708560 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1905/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 12fa75223f1a8624058d3e232d62d0f748055653 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1906/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7bd0357fe97cd1cf05fd017d04829a7a88c68a2a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1907/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff1cf302b82c4b5e5b71487d5d23836dd0d8924c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1908/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 222002eda03b3c8b0ac79883d98020c6f668dd0f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1909/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From efbda613dfa368a86893838ffeff08066644329a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1910/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf4bd9f776857649062b5272ccac15e9c99c0c2b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1911/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ffc08a4a9a92ed8c3c4cec17408f413cf20fd42c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1912/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ee5a29e8aa239496c2cf413fcc5e89764d85eaa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1913/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0074be8a8664d77ec85d206b543e21a21a417325 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1914/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f10878100fe0287b014c67d1e0f1b7aab656e06e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1915/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c21567966037234bc4547c08ec3b2d23077fcde3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1916/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From faa8dfc6abe5f46e2a43903de5d2c50936a110a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1917/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be56719bef79033ee628fb5797d1d5419db877fc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1918/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 65b3434fa15fb229683efc27dd521335117e3fc7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1919/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 95a90bc1039a9b53eb79e46ed2db6a763c6ced22 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1920/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51537c8f5bbaaad1c769fd9c67a26c1c84e77a6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1921/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf6d5d84f1ad072e9b88e61d84e4740544a7c6d1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1922/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66ca49a73928235ff3e6ac6d04b72c5ccc2ee6c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1923/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6e7e7941d180a99690b5e0e6dccf24ec7e04547f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1924/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7cbff273165146eeecf231c10fe42f9a71f5a66 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1925/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7971a7316899639223e812ff19a93606abe7166a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1926/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63cafdd44dbea74aa344980b05b4b58cd53b25ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1927/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 44caeee4bf6729aeeb56d7a71a51cdc1373b45d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1928/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a50b8807f92c10a8feeeb6a46be0f0769bd3c25f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1929/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c35b245a351bd48f78c8d43de665c096efa4a7b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1930/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 655808b4e6fbd9dd98f6d1cc59a807bd6278f1c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1931/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e6710a74e7a7ec41ca0dd912a62e65226fed253 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1932/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d556358d4a856de4afd3c9853bd23ce619c0854 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1933/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 940008213c5ac029b44f1814235d7ecf4781d05b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1934/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a5be0793b99b8454ff8f0c776739dca940bf2f69 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1935/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 728eb9f0aee56e445b5d0500997da201dbb376bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1936/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 174abde6bb60ffd66281b3b659954c10caee10b5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1937/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From da9182fd3c765d5f38515874cba044966279c896 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1938/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e00eaa1066485078715161cf3678b7f8895d1412 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1939/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b35131c0f6a94a370de6ce0eb74a6676775cf260 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1940/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e94d3e848a7925ba726c0f9fbc4d25fc41332521 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1941/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7fabca46c6222e5035e6c57945a73529e60ca78 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1942/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a6c0f70366f14ea8c329b6f2a254b3212a2d0336 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1943/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 02cefbfaf4f0c7c576c92c547488f80fcf919539 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1944/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6a7686ad606c261d3fb52f17410f816102113db9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1945/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d5ee7e4e98359f0f8529ea17b4fb6274fecfeee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1946/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aea74d20fe94ea109f6c8880e3bb0dae00e96282 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1947/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e565083a4e07ce32d48599f543e02d98270f730 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1948/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac011b9b4151d2317b1fb5b2cdd3398b0c122c05 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1949/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ac75286caa87ad8d30f03bb9e71313199cf1c99 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1950/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4bbb80c38aa286083d1d077c89c9103c5203033f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1951/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 40b029ef1a139786bc2a87554501355bc23749c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1952/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f14f759f98bc930c8ed6dfed3cba885bb037b96e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1953/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87bfd9a7446e89dfe73c4fc467db75cb5fd306b7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1954/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81b3c86818116fed9f7ace06d63bfdc514432d05 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1955/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c4f2dfe00a1e8e2fb83fec80e27335dd6cfe5712 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1956/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ca771c74366a98117c9731cd345ec479bbf9e4d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1957/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1af7e6967954ef9a59678655175f4299b0605ee5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1958/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6e1a7afecf323b97638f79692821a11ce3c178c1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1959/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ed5a86e0060f872ea266ce363ed6509b81d1a2c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1960/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1794b334774d9f83332bbb30b749ed8ad20c7ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1961/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 46e185323b9d95a44a77dff51eb153b2512a57be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1962/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8fedc726ffb3a1ea9a643b384edd1be38c7d84fe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1963/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 495b3ab3a122eb42be2448fbfce004e6cba2692b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1964/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7e9310b7887069bdf7cad48b5f8f60ae8273d7c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1965/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb6c958a4f6d1882d57a2c16538aebe4e55c6e87 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1966/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dde7b4961199cba59b844ac1672c72d56fc75329 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1967/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f58e08c74390bfe30a639181b56ab7a9b56eab0a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1968/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 85ee5d43d6887f2df02a2d09576109db9a892753 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1969/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ccca926c979dc5f83450a40142693c4c0d9b14df Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1970/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ef337165e4631f50dd5aa3f21bfcc58304e29bc3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1971/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 635bd71c7bf145741127a78f25ff778a937a6f5f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1972/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4fd1905331a93101ffccc779a0b45a42cc99b277 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1973/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0e651f1adf963fe19f3f01877331754ed2ad3eb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1974/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cf5bbb7230b47afab7b876a54f0b20f41dfc3c3a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1975/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1bb2a9867b03bd617886df2132f71fa7ee042d6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1976/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 62d0b9bf0574201f480304c3fa7b2d5d1b3f284e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1977/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e62ad1c13ce917604a2f97a1dfe2ea69d15fc79 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1978/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1d0de690596732429cf78b1340cf89bda130b94 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1979/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9da1cbd40dc77a91d2bf3df6de28a881f01b3dc4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1980/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4cdf6273a9d9c9b6ea27206cc924272fc5ba76b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1981/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8601c955c8d1ea8f19961802dbd2a4ca19df5867 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1982/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e01853571a11e9a92b043d0b735169d72801a16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1983/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a10e1d1afa074c4bc7be61654e47e920791d07a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1984/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93db4761e5fea57f4f39a51271b41cdebc184acd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1985/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 39edc9c3faf9cefb22ba1b2cfab47d999ceea4d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1986/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c9461a540523ee5b1d5c9456bb027199433f2ab7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1987/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b24ce2cfbfb566d92eb126bafc75cd5e6b14dff0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1988/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6cde1a6f1b0de8821d6b03ee6c23c2034aa7e74 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1989/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 338c2a0e997d43d00fee33331b8297c7feab5f51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1990/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2199a402b2821abad0017065984f1dca0b34b236 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1991/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From df93b9a47adaf596fb1da1710b20210082b73fd4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1992/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c7a9f393ee690b1538c332ab7dcf80755960ff0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1993/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From deefc7798d5d785b1672178c6f54d97d644731c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1994/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b462faf764b64a693581716bfe12296b6482222 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1995/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34d729ad881a88eff78c1ea4192290b0e4d965fc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1996/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d1e13a0a356b29fc5c30be1ed67ffc9ec4e005f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1997/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f54bf2a4cdaf3a210b6feacee49a10fdf0c32532 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 1998/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f69163b3b82b4eb8ebbcef2207e39eb242e07861 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 1999/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 66564c04250368df28cf3a790a9da3e33a909194 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2000/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15a842e0f047bada8307ede12dd7eb61744ca4b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2001/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bbfbe0f761eda7961cc2911815284e250dcb142 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2002/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eaccd2e0b2436614a732d5f5cb717bd5fbb3aa6f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2003/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4d6f76484b8c6ddcdd899b170b13054648d79b23 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2004/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c218a2ff96c8866aa5255f31d610713e1178e134 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2005/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7cd25af90d41c63a2f7b2cbf501ff0353474a2b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2006/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 784179c50f754d1b141b484d9758a4ade334fe8e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2007/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86a26bd6326429372edfd641cd7aca32af780c2e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2008/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a703dbc287e293f4657750ecfee6a80ef5e4a17a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2009/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 085e6eb44aa657760322bf4199009117d469c18d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2010/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 853ae03bde4448cc3fb397cbc67e6bb2ebed2b95 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2011/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 881d6ec2cd8b4b5bf520b9b3d1baf89fd21b3f60 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2012/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a99f26dc6ec1934c6f1ceef3920deeb542e3d3f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2013/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dba7f0a71b8f5b2eb47cbfabbb78bf4ad4b881fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2014/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b16a8b3e8e3d913ac9a5ca33c8c97fc9151a58f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2015/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6a81aa0eb83227acff15435aa98fc45c751ce4c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2016/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5d266c97abb8cd4535542a3e2b779c205960fe8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2017/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ea2507ab82b4f8b571ec127c0271923a98da49ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2018/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb103fc7ac77ad9fafeac009acef41d27ff775ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2019/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 23ae017d1fca5a04a64e75ad034c3ab58df2f46f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2020/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7690b1c9d37ade1e57cf89f6cd1d1b0163396926 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2021/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7dbde6caab752e681fc8ef9975c8d8e38e968b57 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2022/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eaed729723ae0ece6f7f79d8b9d5018bca4f6335 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2023/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e3397cd10e4b29bbff16432f3ecf8311cdc3c1f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2024/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 64f68cc50588b903bd78428bb0aaee3e7dbf65bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2025/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6519f38704e217ef1aee57622574c344752c2fea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2026/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d590a9effdcd46b3d4340aa40721cf374745766 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2027/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 40403ca21b71d3e04981b530a79aabf6c9887040 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2028/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f5a7d6fc3ab51dbd3e9edf0ff3e7e701cf636b30 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2029/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1d2efd62863c174a4dae42afd9901ea1c1cab23d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2030/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54263f3d60ad014bb3e082ee94c31489aa430756 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2031/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d2b2cb3b3120191958f5185b59ed8dd220aaee4b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2032/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a2371edc418bb7444f47ecf597ad036941fcd039 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2033/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 255dbf235d6e794511bdc5103ff7cf1747ceeb63 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2034/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a896f09ae1347f5e2433f2b191cec7510c73391 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2035/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c8d086b71fc46760467219889f8ed29a769f9ac8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2036/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4ada16a91b1708fd9490890a1f88a8537057a800 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2037/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f8e3c2a34aa4385fd506f3aaf71138811a6fd98 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2038/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8faedce1b72f6b4b8b97aef68c17c2d7646ecac7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2039/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0e56809c85525663b48316e3ef3bc145d75d2ab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2040/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28e4d3109f604fe4704a575a75904d4e1f6d49d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2041/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43d6111482b3ceb38db8abb3fd188ca4d940445a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2042/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d38b64e620ae7b203aa4aacdbef16024ab2a13f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2043/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 89fd0ee65d64d58f6cc7c5bda397224fcd97f20d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2044/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 32613e4adf178285a619fdfe0aff9e6ea36cddbe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2045/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 822702d5e3d30f8f70e7954c8f3c9bfc923d3dde Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2046/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d17071f76da3af30a9486bfc4ba1b3545704259e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2047/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1157e886051240d765431ab047a4356d8afe3137 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2048/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5cdc82d6828cee1c9f366c5e4b436636d5f3741d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2049/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e03d3aea5777b66258fa52c14196931c130c0d07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2050/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d63684bc182de1fb7050f4e4573741fded1027c5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2051/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 406d026b6a8044522b90743f8d852de2c5aa5989 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2052/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 74db921ac4d80365af4ec14c1c80fcc310ccd86f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2053/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2b32e69a4b4624f5e5efda2b0711b62964754acb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2054/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a4a37740c74c47a3e8f7196df352078843f1bf9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2055/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6604f71bf5c231afd9f02d485a7e3dabb2617fc3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2056/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7ad713d02e0f03a31cacd0278840ca0a0c0d0eab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2057/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0c0eeae609fd90d2ddaba9d96d96c8b515c20893 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2058/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 164484238725555b51b0535f1290d47ff86e2ca6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2059/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e2c358406fbfe45f74c7e2f04281a3a696a9ff0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2060/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 77276b9b97c24ce9fa3a7607b430df6fd7ddb4cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2061/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc3378f2790596cccd33d8a895b2a79190829628 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2062/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dfc441998f82c6c852179ef1345da53674f66f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2063/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6bc35c6cf0c4f66be46b4379df6f144849ec0439 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2064/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 08e42278def88e53f632e3cbb8eba91fef733a4c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2065/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 86eb47f346781c6adb545c6a53db6ccf2f4c60ec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2066/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c5d3a31e79627ce941309028871ceeceb713e67 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2067/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 191edc1b962fda3989ceceb7965351b98dd5183d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2068/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 055418037993b1b203e7495fbaf68b774e86d4cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2069/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a043898f9fd060e7e575815057b59c3f8a753a5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2070/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f2db8d9f2cf380df67bb293117e958901322895 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2071/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8665efada9124206ee8b011ee08b215aa2497cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2072/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae9375131ce40e707f40edce8d9956e92af03b42 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2073/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 32dccc2f3fd8b581066e13ba28219ab915110387 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2074/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b047e9b10047c342b35a194ecf770cfa2be8f6d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2075/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7ca8a378ffddf94b71400e0ae3d3d1811d95cfbf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2076/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad7c69ff6c07bc9f2c847957c07b79a8075a5a1f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2077/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7c4bf76406d990c793ddaecd6ff844b623cef64 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2078/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1a3f5d316a9e6d706c8519ff1434b60ca3a15a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2079/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c292ceda6ce3197c7eda8db93339e73d918a6df Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2080/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54fc67f5b7a7027b2dc1cd1c308a9f983aba7aad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2081/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e1558503637ff66affdd67ef8d340983fdf9438e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2082/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d90cd531b7edf0e6a05316e5eb945f2004b5c666 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2083/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e77be41a09666a2165d989c56069e788f2729b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2084/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cfc02a554ace3cad2233e4a376da1d9ac43c8c6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2085/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d8b996e96024f26b19328775a19da9dbe19f69c4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2086/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6a09f9a62287508977442de190bae049439e9b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2087/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 09ea148f1f6dc6fc3bde620cfcd93847c722d879 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2088/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 52ae3fbb0629e5f0676cda82bff72a7e03a7e107 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2089/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 87a0664790643b4eab190157f954c3ace909539a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2090/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0005fc1fbdb5477b83dd56ee4693cc66ecb0c054 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2091/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59afa2cf8fbef87663f4b9fdbf0a2ed6b0fefdf0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2092/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe432ee564f4b8ec0b5d18c2c660ac9f25ade359 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2093/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f1e623b4788d0cdcefacd7be952a5017af203f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2094/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 56fbcd2cff979c315cae0059c4d8fb277883cd61 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2095/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0647a721f3f73dd4d45afb06b2e2a92bc0f06089 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2096/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2dcb9a502ec1c85ec743f99e6731279d0ce9bbf0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2097/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f410a090f4aa84352b6c1320730fd0729af98e95 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2098/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57ebc5c95fa3c13a246341ed313b96268a1ecae1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2099/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e6ea23e42ac10dc56e968d1ce873812a9fa9c076 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2100/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e5cecac3ccf1a9ed561fa3989942af7511fc0bc3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2101/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e7ce15d412187403c5a0d5afa5b7952b30d0bafd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2102/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 260e0f4b9505abe44fdcf12ea654e49ced18e783 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2103/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 485e0ad03bdff2254ded97ff024f4359532dbefc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2104/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7f164bb0f2968c5d439ad7d09cb5a8aeee58c2f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2105/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0854e87e756bb3b88788adb4e31702ebb5f38b7f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2106/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 18b6f581f317f95271ecfc86dc84d72a88f7d71b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2107/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4aef9c4e4ac6b2ad62286705b14621c57cf7c34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2108/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 902305748a7698cdcd4936480e4db64483c866e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2109/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac3d15ffb4c200468053b85c52454c04f3797933 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2110/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 187a49ac942356f9ccf91f5d516378ef564cc781 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2111/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ec1490a6e2b08a6872f234120446e0e494a6eca4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2112/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4b76e301e4969e9997a678a3aad2b80be16ae08d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2113/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 92725c3617abdc314868394a5d548f1add35d1db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2114/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f40265643c7c46f74657d40d25547f2229de992f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2115/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7468d5c293d8a6ae1c25b557dd38a759eb1cea78 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2116/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d268baf00e790bc9db50ca8271ad811ee1798ac8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2117/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8bd8c810891d6d594e9381bbbe456e851d52d3c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2118/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0246d7eefc19440dc38e70cebd4f09f58491a297 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2119/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b9f6557008bf5b71d09246df382bc0477f926f50 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2120/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c345f1b37e51c32249c0205182c4bd8591e4e94c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2121/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 16868b93d3378d9bc2b580df8c89153325b4bace Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2122/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4c895d4464fb005b479760b69276638fab0b0ddc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2123/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d97cfb58f835ffcffe12980c622d914ba18b79d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2124/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a4d499d17b52b7b57f1aced6b4e7e0990f971d70 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2125/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d30874fab3f92f5911b2dd26c97bb5b8e6eb4aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2126/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63262fdb0ab12232f10703ff36ce6646bb0a5959 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2127/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0ba37723594bd404ceded15e0a9b83f8b775bc9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2128/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d9d418ee363703ed959450adfbf83a7502714ed Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2129/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc9381c6cb1c2fe9a1508829544a7641fe9995cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2130/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6c657326dc86beaa281c6c2ec65f9b14e87802bc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2131/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 38af71477d650831f995cad6b212a201115b4beb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2132/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 849cd08d4dc88da8d0c2286296f6fd80dbb66675 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2133/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6fbf870e4e6276d33018b2f8d2af65051a7dbcba Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2134/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 545c98a3e8151a33fdd2e24605ee792b5fcd06de Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2135/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bfb0dd664095145a8e3fea347b06692efe9d6584 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2136/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a1ecea892d019dd5927ed6452e5d0a2e15ec95e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2137/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c27d425a9e036682bad5994ab12ed263a24508c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2138/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 906dcd621b78bec85243443714fe654519bd9c08 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2139/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d715a3b7f4cc010f96d350d6653060ced7171aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2140/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9ba447a68245af4231282484b7f18a8ede9aa8d0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2141/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 865e037cfa74fd93939e9ae08760b6d08c375e3f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2142/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bc70bf6553be63d5e8a926f51a889d8ff4a63d0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2143/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 570c9186727891d5fb0b893dd516929e3b35dc6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2144/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff33dd29a5d1dc02ddbee0036a15a2764a682f9c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2145/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0099feedabffc9c37d38ba531b265fd6fc091435 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2146/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a7d673cb0184042e3959152efe171c702fb14729 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2147/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e14843cc16e39341206079a928460676e933fda8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2148/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 793f13cc885d64fe951a7762f5ac45774dca111a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2149/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dc29029c21a0f1852ef38facf5412ee988231488 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2150/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From afdfffe39b8bbc7c9fa93995ac0d229097621ed5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2151/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae30cf34212b676c82a2925e1fa0ff189e941f89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2152/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9fda97a706ac2a6c8e1b41e8a8cb7a1e71b41fdc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2153/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1745d8c57087973397160ec4114c3e110ffdd01c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2154/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3b6a10437fcabd0c7d07075ccf5448a82e05e095 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2155/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59573a90a2cbd2521553b5bb56d2920e542ce297 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2156/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3f4ce370c399b0f528fe2358350e3b6016494861 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2157/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de2b2582b615ac755177a5eb7d125c1ddcdaa9e6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2158/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0bbefb7db31b4126be497fad282c3f7497c1d04 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2159/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fda693fda7251b064d33449390271954d203ef6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2160/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5daaee624ef796d6a10746a6110e990988acf20b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2161/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 39106993bb71ed14e379b42b42f52ccb24352b52 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2162/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b6321e7858283a74748fdc07f1008a6a4aaf6d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2163/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0ea7ebc0285e632d32700f587d2994bc71a6c95e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2164/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d62be2a687cc3e5a5c301c4fe3755f97460604f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2165/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1dff70d130b42abc1c67ecf5f8091cc49cb5721c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2166/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ed2e77ae2b1cbccb5bb867ddf26bd0a3cd615f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2167/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ffbb9520d12f629ca7d460930f53e6a4835e8410 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2168/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 370e44aec5634a9e04af2bc5b17a16e22472b41a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2169/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad4dc066d55296ebd29de6d3557800f49d76fa0f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2170/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5952333dd672efdb99d5e509b864659ea6aa41c9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2171/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4421edd02d533567b27209a38db7972ab6c49f67 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2172/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b04adacdada233ff330ca9db39833d0cc762f45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2173/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 22a0edddd4eb73b754857822ce9f0707c7809b75 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2174/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b84f3895ea787e24f512b2f10f83ea2bc988d243 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2175/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b43b5114e68cdaf63dcaf43864f88240e21efa3c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2176/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 75770510553cc4df9ac665a906e6105ef1f5c357 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2177/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1c6c37aead7aec6a9432d85fd897eb43c26e974 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2178/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e43429cbe81cd4681a14117fececf2361cc9f53 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2179/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd65cb9d73d6d5b839a67b318d1ce8bdefdc9384 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2180/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4d23be656207ec917d741a84f31112beaa83f4c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2181/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 245557ca45cb455fd345e5174f9be40f4b367999 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2182/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ea526c8f9b78aa52f66572d94bd7f81784a45f16 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2183/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e3f1f42ee14586af6add9d58d5578ecca43a85a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2184/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4c34cbcbc11d04a794a3ccb72683005a8b5c40f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2185/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 94a527d54103b24befd44e8cea9f3c2c36a16d3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2186/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 37523f78deb7bf7fff86eb298b5e27650fbb2fc6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2187/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7582723df007050d234bb55ab75995d3086529f9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2188/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58af7f00b423639a7ed6a07362551aa4e4149cfc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2189/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b8435687488205043a8f641cbc0cb1d903a166b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2190/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ae2c733cdedd390e47fb29f0b952fc5d35fc462a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2191/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9cbe2f6811c22a20daf97ff5bae0b0025ac250db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2192/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c801c5241c4ad6d85a58f4ca91a99f36cd237a0d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2193/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff5a936b1e8a4eda56ce0f4e382f56ce8c68af3e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2194/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f3a572c7727253b08b91c20a22524baa1f98d7ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2195/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9280b4172927dc9eec001b9176b98f99d2610752 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2196/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de5bd2cccb05a562deae84bb26efbbd577c3161d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2197/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b3effedd99bb1b4a542c8b0392c5617be17ad71 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2198/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f72f2f0e0a60db9fa9b6f82ca7e9e7205a9ade22 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2199/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 269349663ff0d3efc74ceba32ef28e9445a1e248 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2200/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ed8df5b3c446ec9735ec31dc5e71391a6c4591c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2201/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e06fdfd75ef8869b5900f3e063aaec00ffbc713e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2202/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From af811a32c0663dd5dd193b36a8af8b5713e37857 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2203/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 12f710bc7bf1477aae1a7301e64f737b66050bc1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2204/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 30f834c7f48ac545087fc1a15df8fb649d040d88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2205/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d15f8b9c317250bc5b276e5ebcae31c432cea946 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2206/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 807cb5465af0675380d843bb8fca9f0ad7d04374 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2207/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c0815cf4c0ddbf54ac8d0cd6006d8ef4cc35d67 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2208/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From acade91b8ca6dfc8d350b9a6bdfce2344a1a2878 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2209/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91b33a413970fd0e89e728effd1ba842ea3d6d88 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2210/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de023348e8c9eb70b4254ce39c5688fd07aea909 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2211/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 883a0250e0777474dde231b260e8d4764fd31cc0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2212/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5022430285359c34372889f190d51918833a2963 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2213/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ac972a724a44e81c19153ae0e47cd4bc667a766 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2214/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91c264644e9c2bb6e949f47a8ccb84c88cc97432 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2215/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d450e215640c64e4e76517e6f2b1281fa31708d1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2216/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6855bafaa8757d7560b063238dc8664d08772c3b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2217/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e390fd26f36fdd6030d0907510d539586a23d88e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2218/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d55a3c03a84817f28051d0a598fcefcea1e3d33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2219/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8dd55bf428033868c6d3ff790cd4c8fe446e6782 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2220/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50bc59379e82b40b32dc4a8ec7211e836c789dfc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2221/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 52f81c68dbc4b0c9ddd84c369a6301f08887859b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2222/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 01b7132d55c86fb1532c009f03462fe46b0023d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2223/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fbf11925d7dd2f9e70c8af07a199027c6699a8c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2224/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4e65e29f2b8719f4041426203a24748df6f68559 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2225/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be98c66a82f28b14ee3b79ef6e75af278fe22c3e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2226/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1df023b007c39658a9252b977ef1278e332f5c8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2227/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f6e56c08719cb5a7906a52134858ea94b75ca24 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2228/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 152e31b1a2eab37a07d103cd39c9956b3b4090c0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2229/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d05769e098d80d6dd81f50e84b5bed0bf9a7a6de Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2230/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0e63b3608005027c959da01a450c83bb210191a2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2231/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b948f6b66eb88d841aef02e41986ee6c47dc5870 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2232/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26b120d8088a7350858d2bbde26ac383ea601b10 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2233/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0427caef92a764638b3f9316eb07cbc552b50876 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2234/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 824ee2b43a2f23b47395aa3acaf23977079dcf6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2235/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1369d6a72164efb436ed7d8bb3174d7df97c5cfe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2236/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0639aa3eddf07a0aa15bfcf7ea3fc7b6192704e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2237/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f41d54206758c7fbc2fee07552da4aef916aadfa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2238/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6f4b83498e510157139fa932ab3a8f880fddd15b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2239/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f4e04809df67acbf48c93e6098d67b5128155b40 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2240/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5ad7b17f90c92f461e871ba50bbca669d2fbd4d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2241/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f3634f179fdbfc1c40a1b6a0e55e459cd5726bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2242/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a3301265abf51c8c834c5c60b602fe4165007054 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2243/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b6168b5649e012bb8dbf13ac85ec657b2f4425ad Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2244/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 65e758bd4f5dd72c83bbd5b56b5e5097d648de12 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2245/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8e9e4e2c605fde22bea3d8b05eb01ea12ff1913e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2246/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aceb8a48a1302faa020ed3aa84af1298228160b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2247/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1a934404d1d162438d38f9ba2dabf8e79834a61a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2248/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0b8395cec71ac9065b5dff6f4cfe903b05da2a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2249/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From db340c26d3575cff340d80daddedc07edeff37d9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2250/2596] Update --- .gitignore | 4 ++++ CMakeLists.txt | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 8bcb3e3..d70736e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,11 @@ Thumbs.db /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ +<<<<<<< HEAD /build-win-cuda/ +======= + +>>>>>>> 790a629 (Update) tests/test_files/ CTestTestfile.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 598b5c719884c56ed5b7efce7bd388738541b0a1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2251/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c35d04f10726751c98ced74f0ec17b5f60b648d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2252/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 08db499608246022ea97ed9dab2ec64326b95ec5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2253/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f39e9fe210d745c1044127efa27d42218b4f0ed8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2254/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79ec5f2146faa3fb266f4b60a92a1804b8319b8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2255/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82b58f0e89c99a582b96fe5084cf7f270724ae34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2256/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dd5586a3ae3b9d1a0f16173a7b824fed30e14b8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2257/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa4296659e1ea7cab562c3306464486a75062707 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2258/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d0899bc4dfb2226b8b2c9534b4113ac2770a0f86 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2259/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 809791193e3e61c7e2bb39a5a9fe13cd9429b89b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2260/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24afe900290093e65721cd79b2d2d12f7cfb4d65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2261/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ffc162c08faa52e07506c432f1f4716ae5616bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2262/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c7824105d7acf7ba210ab3c53b99856df5149c6d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2263/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81c5da56e9888ae30dae7bbf7d99155d3df6428f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2264/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8b526476418b3dc7528ce093e2b6a4f0f66aa8be Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2265/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 25f60944e6c526091e763c1e06c83bcd7f7628a6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2266/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f2551cfc208354c1b37b3eea633e0793e128eef1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2267/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bcc5f21cfc8b1636a7954e0cc65a7cd148b1dd6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2268/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5dfe2ff43c48fad6f0cd9076387118ad8f063392 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2269/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc666242497415fb5043b44a85d62363056ece14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2270/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 435fb602c4187e193c2035018765291aecde5acb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2271/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b0e65774de4762919b646c36d8dd8ba2a190b793 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2272/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6dbd70ca7dc6a6fdf70a47083a72ba5c8e6f195e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2273/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 53c4bbde266d4f71e98d8fe97497bbf423f53643 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2274/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 01da1b3021da7f47a27305d6176aafee5d6b5ca2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2275/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 454fc2a3f0e52d3b43308cac46a6c017c14f55da Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2276/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 879abded7a1f472abb55691b0f1e6deaabe67d8c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2277/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8574fdb35b6546498ffa561d9b3a7ec5f90b46aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2278/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a1652012a157ee76448d3ae0152b8061250d7f0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2279/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1b2c8ef8a73829f62751106ed195811c0f2162a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2280/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a68e1d32f073153539ed5f998c1f55c667010e55 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2281/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d01ec73c04eb53fe626c1584bda69e3596eb3d77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2282/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29991d90fdd3b3bc2ee02b116ff532e6ba48290e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2283/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f6c5e1e6bfdc31b09791c4673bbfe05943c9d1c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2284/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 379aba0d5f3491c186b16f91ac2c754379f33dbd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2285/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d01c6991ec136b8d6e47a89f2a803434e2ac5992 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2286/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d66becfb8ed7f80bb044e6ee72ddd8a19c1a7ce5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2287/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b959240af887c3c3e5456dd6e5de0ceb3d077c7d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2288/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 567343709620b9acad93ac74d38a5d7246a94123 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2289/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 270094c96581fcde0195d31cc4bcdb26e4c9ce34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2290/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7703ce06326e2c4298dbb0556c4a25e5b86a742 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2291/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e61fcac4eaf4a4f8212a3f43f5492900a6ad531 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2292/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2749f3b7116bba78dd6ab5bcc71b3b08c90c98b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2293/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7e67670c0719a0f21a9e7eb900f411c1d712fd34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2294/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c0b4be28e101636ab4f9c03d7157e76f2c0023a8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2295/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f3a2708c1cfec0e72bb358e1e0129429f526e2c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2296/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 70cc0e1bdf3eefe3a62bc9ba1d1ccc9acec7a7a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2297/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9055f63233465793d2d84cc3ee50a14f253e112d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2298/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13bc5723df53510ff3027c6b1dee8d724145cf8d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2299/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1e7113ca6f091a2434d1a5de50fd3b147d80c760 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2300/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b511904171f0dc679b33ceebcc8bc2bf5cd9415c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2301/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 627f8c4b21c88457354967ac9a2b41a7649e5e34 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2302/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5f103d09afe24f3dfed1986d5d027111dcc4d692 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2303/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c2e96990e09c047b8244b6b5768a3840af69717b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2304/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4c15983ea5c6337ed44ea5eb74d68e04ce88b080 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2305/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fb0c8174c4b54f9068dbc3bcbaff3c35c62b1bbc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2306/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c171a8829688987667ac29b7bd067a6c8df2be92 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2307/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d1352a9f930e12545d0583dde2e2ca26b333359 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2308/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bf13b52098f028d56601ab2341190d09fb2d6b65 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2309/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 57b725696f339f56f1d30d9f1350cc9097858a05 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2310/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 97605bd320dc0b1ff0b88210add68797ee9fba8b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2311/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a836e97dbd934eb2c8cf9331d0d6bdc4dc15d85e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2312/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 464d56e0ca1b6b1388ff295d3aa7c6d23635ea93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2313/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6824b8b1fd8968afdc12afc1c46cbbbfeeee454b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2314/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe2ccebd7659b582bc2c1dfb91999add5af72a74 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2315/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ce02b5bacc319a770256b9b302ac76ae9dfd29b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2316/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2185680c8e6e577d369b024a7ca64a0a6bc998f1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2317/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d7bc7c3b18fd3ac3e73c57b4d0f11b9dd927be45 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2318/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 75f76511654b5fc685843932857c1a4f89e418d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2319/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ea0177a7fbfb3bcd41f342514f9040153ac510e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2320/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 91d68fe7d1cccb228de74a4cdd8d3ce3c0fb43d8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2321/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 50ba445bd0722f6a3f26698d658998d406318ef5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2322/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ddffe0bb3e7619fcb9bf8bbd0b685b70065f0ee8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2323/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 78f25c94d8e8b190f711c60ea5579dc9a26a4342 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2324/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 88fe8d2500222718710d9765b8dd64cd54183116 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2325/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 51f496343a6e41efe5b3288b212b586558e7cd18 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2326/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 59e8ce8add22fc8f236360a283b53b6d4b120239 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2327/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 676ac1ed7a6efaef54e15e79447f0948221c9fe4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2328/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96453c604dd98cf0fad1df5be95314bd037b9538 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2329/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fb71b012ef06c22ba2432d9e70fabe768624ed72 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2330/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bb8524c2e111808f772ae6d30ae2ae911843e591 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2331/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc1231d590ccb787fccf61572906b3c8e8f5c9c2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2332/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad03367f907418bc4513142955dc7878c5df7178 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2333/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b6424e39f459ed3fad6a6e487db94e4cf3a8cea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2334/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c653b2584c1c9ec926ff5bef816b14cd8f090aba Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2335/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4fc2e85b686f8e58fe709ec74375a0ea333f76e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2336/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5b96520133cd2c178ac3638bf58b0094dafc16bf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2337/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d6369fc3413e76839cdb15d31ebd7bafe7717d29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2338/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 96a09b3f05d1c462b393c8305e1dbaddea466e51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2339/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fb7225c2414fa44d2b05912da5204438ea08cbe1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2340/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b7c1dd6abd2b349879a483d4b51394c3edbb6696 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2341/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 058fa97c7ac6a295ee4590d39e806ab5d48b6e7f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2342/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 61cedc8f7e6a566d06f251e32f5d3fd7badbb6ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2343/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a3f3d4469a49eab0784a5e00e2bf9edfb92dd2c2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2344/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7f831d3efd820454d018acc7e82a308f8a08c59b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2345/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e41f539997270e2486c7eb650f30eea90b32dee7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2346/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b32aaa32c63128a4e58ec36f094587527c0851fa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2347/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3df0c4f63d92b7356e0fd14956fd791b735b9944 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2348/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3e6277319514ec0acfb55c366ebf0acc1dc2d65a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2349/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1194ec6c6a3624b90a5d09e64c92e74157da5980 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2350/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 945801e7456bacca513ae883a98bae7ff9aebe6b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2351/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2c968ce17d6485062e8d5661869e00eded4d760e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2352/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34bace23f37c90e28ffa9780c005f4f37dae8512 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2353/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4766adb3388a46e923d11c2eca8990f32b6175e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2354/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d5fe0ef94e5f868aef623cef59dc64cb065b7ea2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2355/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5e4ec74196b6cdad5423e08744870367407678f3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2356/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d9d06e5f3f1a867553752eafbfab6e2548b55b8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2357/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab7b47aa5193176493c5c1a4d2f17edb558b66c1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2358/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1cad9e8453816e062da82ad616f6704bc7c424d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2359/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4b2ce6e93d3d460f934ce0a794dcd11f9589d35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2360/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8651c74197f73e0ed1d8af8b1d281a07425fd7bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2361/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 481866c43fb71588298817bbe3d15e4047d24c92 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2362/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b234b8a86f68db4a011aa518af94f4e5835366e5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2363/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2741b2782b9b91a36ebcb816a3c9bc6421e5bae6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2364/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 21765cd8ee9a6c7993ba241202913f8fc283d1e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2365/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba6f27cf45e871072ec2d5e0fe818958719b9f8a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2366/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 81b2a7a4d2bfd2c22100330cda77d484ebff5f2d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2367/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 403876020c0456f6354dd598f515df3bf338ad29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2368/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7ce1e0bc9b2fedd92a5644d4f06ac2e885b60246 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2369/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5189e52f9073a0c3710c263e8d648491782100aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2370/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5d5f71ea0fb01be969e84afd89816915bdb80131 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2371/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e4a21e15a4d9b9d1f0054317a3efaa9450ed315e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2372/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 98cb096957c2bf0608afbcf148d6a00c63df5038 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2373/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d1ecf8594a23a75129239ae2753d0b8f027d5d61 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2374/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de5ccde90aa84801eb17295f0d10a17be58e67b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2375/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43f2e4d6be87af6c186a463067355ec1f476b24d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2376/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c34747133bbff8a41e734ee0d8198cf2237a3e81 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2377/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f1f8dbfccfb05a302ae271b831ec695a011e4314 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2378/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 53b4f01b894a5ab5283cd3d40cee9c6f6f6f6656 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2379/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8e226f2833a6245d83fb31daf4dc6b97c4da469f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2380/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4b3782de9b1806f46aa954f6a1cc4ce7a3690acd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2381/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6df6b2ba96c4527a99013764ff21607ae4dc8830 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2382/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From aa6c826e834e6732199d0d76e7f7b9207357bd76 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2383/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b14867c1b19b85f52a9ecc69ac4d2b5a6fdd48a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2384/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1362c95bdb591fc82cac8bc2140eeb8db81011d7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2385/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb39a6763f7ec2f3a564172a10569caef19aa85a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2386/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 43c00905490e12cbf461962602f8647a9ec13e0b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2387/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5fa09897868836b1f9aef17c3cb5159fc3849a60 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2388/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 26b7a35532e7ca1c0235cccc7ec1b01c5651a582 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2389/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8f9dbbb98d97b6e4194511af3e68601b940922ec Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2390/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 790442c21b10fc14bd09c9f0f02cd5e88d18d329 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2391/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 74fc79aae8d218c4250b088f06e353aa45ff3b6a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2392/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4016cdafada695db02d47bc056d659e092e56947 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2393/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 810ad35b2af5e46767e07a3b7a142c77a3ae58aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2394/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7fe46a21d27bd651e154af08e493ce8455c26a78 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2395/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bdbca2367b018745c38e03c722b985a6ee57d35d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2396/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 24f4584001866255e347205bdcb38613cf283aaa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2397/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe5126421ca506b6066fd523ef91c9f3ad0a8caa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2398/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e339a2f897e4f6c5fb24a9d57a9aed78fe7e8fb1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2399/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3fd4bcef3e4e996deb432cefc3f263497b7e8fd4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2400/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a9ae8fb518402c516fc9a4bf409819cf506484bd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2401/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a38d8491302e0530fb582e14e68c46e0bcd628f4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2402/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 60238eafc8b3e8522d9adc5659c12216779dcaea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2403/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c1c1d12ff9623c4c285ab1a5beaed1dfca5475cf Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2404/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cd683801db8ccf85f96f30638c25a643091a729e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2405/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 160e87b3643f5596cc34903325fdd663ca69f06e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2406/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 83625d24e6fabde8196ca6c274c7bc0dc642879a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2407/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f0a80d7434d6271f66631f18a52094c3fbc17214 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2408/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e05f8830bfdc30218746f1a9e8e5be86345592c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2409/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From da95daee8525e6b35e5784a9ab2320fcd3c7a131 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2410/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ba64143b07b249905157b64fd75dc329b956dc26 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2411/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bd315a2ee167e721351e9493b787dfdbb07bcd46 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2412/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0d8f9ee60b31c09d71a30c81a742d8c2e6dfa99b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2413/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ab383706ad3672fd7854bc928e554b834b867730 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2414/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4fe5f77e954bc2b3ff54afad6f14d70983c9fd7c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2415/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ace16c3fe18ddf4d6f81c5b1bd4471d3b65d8f89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2416/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ad9d07ca86e4e7f1293eb80f9c34dc649cdfe163 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2417/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 0521c02eba629619866f183d16c2b52ff14001ee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2418/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 29c327e04a11a0c985fc22cb619cc7b7a62fa9a0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2419/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a1291948bdef1c657547b16396533f040b75fc14 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2420/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2884c88d77818ec3d6487ce9098019224266e393 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2421/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 58a1dd0c78a21f05df687609382a93778d9a3dd4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2422/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8d019f1cef3aba18223851e2bc702069c785f620 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2423/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 79d047da8ab0be4c428883d90da346f29fda59af Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2424/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebcfb1751472bb8015024b42f5044a15e45ce7d6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2425/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f559e3a16a9736c4f6346bbad9a6f6b78c8d3dab Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2426/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6266bf272a41cb326ef5cd566b52a0a76fb20f66 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2427/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e9f6a3bee9a9ab36f82501f067094b3f2737901f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2428/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c6a24dc0a72214b2120233ffec0fa8c034efd1fd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2429/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d369998726fb681d1537c547d01b3007f6737d53 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2430/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 60ef1f05b22616b1f44d0df65582e6597675a6eb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2431/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 60d241c19f4f4dc438be870d73d7368f76a4608c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2432/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a534ea450216ff87af5bbab7eea1091c235b0278 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2433/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f47a7ac481be7d560829ba0a558584a4c2a3abdc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2434/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b2f9ed12caf97422c894e177bd8b31b17dfb2469 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2435/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From eb87acb5d357617e9f7b816e3e511de7d6460b19 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2436/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d9046dcefc23f63701c32e902beacec9d1c8039f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2437/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 877439d0d5799109a17e4c44d3e3490a53e4dd28 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2438/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 683ebe05d9bb49024c96a898ab8fd204fcb5094b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2439/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3568e26a848f7e9a0221f94baff521cd31b7e0b0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2440/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 27e362bd9a733a1a4c5c1888ffab257b4f200af3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2441/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 043c9358587a3748166f848d3a04f72ed90f73a9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2442/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8a30e75d0bc49336cd5614252d68f0a96aa10135 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2443/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2ab9ac651d976d35172fd96f9d1051f154cb2ac7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2444/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 30e7a5207a60d77b05a5115f7db428cea1a083e0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2445/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c09ebf62f6b6558b017aec8e3a5ed68910105df2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2446/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc1a5dbb5bc7b717005e8bdb99e5cc91dcb57ca8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2447/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e0e3e87bc30f4f76367e410fba28cd57e2d6e1b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2448/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15b018f5e4005cafab4a2db59a09c6702aca3693 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2449/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From be8a3609d3750637a71462d3ae942cc56d388b33 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2450/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6b49419cc6bff8c0b2615ff93713d68ff9847792 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2451/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 917aa7688275020f8ef90b4c26b1b6e3937efd49 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2452/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a7908daaec1b3b159ab011ec6ebef34dddf3494d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2453/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e89a4beb89e25cb647a497da12c2e61c0555c93b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2454/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1479aad7341ccd0ecac70ae0de307d6c4ea2779a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2455/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 948f74f83a4bbb76eb80efa64c45f6d4741adeff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2456/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 82d9196e6ff82f38a51c044714e7884b7424ae35 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2457/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3dc2fed1ec830b13c6754ad06f0835f75f1cac89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2458/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 536d0efbdcbba9e6a64b96f2057b42174d23f3f5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2459/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cac1020a3064926fd1160e1f832890692e0d101d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2460/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fad33551edb760158e9d1b62cdda0f31c1ff4fcc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2461/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6ea874704f56ded5e8bcfe9b7e2928180383eede Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2462/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fe8c4ef9252b353dc7306ed8d1c083deb3a969a7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2463/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 34e6a93456ae31df58c601390b42bb69ce6cd48f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2464/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7b4da1493a514c262eabc364539454a0e68ed9f7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2465/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2bed94dd56b90decd1806539f6ddb1d049fa238d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2466/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6abd9c56296c58db0bb99b52aaba52d7bef35ba8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2467/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4f4068e406f6d2bb1cc464fc17a001cca71d3e07 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2468/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c24c0ecf3842ae91ec63fbbb77aa0f8fa7a0889 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2469/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7c7646b36dfbab9e54348a9566d0628674941d8b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2470/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3a9deed141192a7553b476d7d1f636ca82bddb4d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2471/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d04d30603b67db55a96b4203adc2985fe3f3b457 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2472/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7434f81255176a84e387574314370efebe27a706 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2473/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 68ab7f17083b5f5353cd41a0d1961d51ad35b6ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2474/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 36d1e444560c8ac10a2dd3436138c765acb2b395 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2475/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c2771ea3c5a394c746fb431a897ad6853d69aa29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2476/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From faa6eeefef342dd6762b543c890743791a23197c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2477/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a635ecf574a74947e44da154948160b8710ac6e7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2478/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 19405f6d4b43bf57a9caf003d2376e7ab09bd5bb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2479/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 75d9483222213e2aa4c93b3bc7a534565c1a698f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2480/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd6233900fbe780cbc6084e890515b0dde847197 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2481/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 78f9bf5629c22e3d92b5e89a33f218b72d47a9ce Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2482/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 231bf6e2ec18a8d8e9de4de261af8a7722a62513 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2483/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3681cba67f266f3fdf675609c8dc70101408d5d2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2484/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a9bf8925e95e1f2a524eb955c3e417f5f9b84bb6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2485/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7d5488e876857e996eb932418e493fe54a297eee Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2486/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 639b7dbde5d76d3251d4f9edcf15a8811e43b603 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2487/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9917fc5cf58b3be0dce76c501f8d0653d0b1085d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2488/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 267ff951011f23f1a88a77453bfae3f449f157ff Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2489/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 74b056d2d6008aeb2fe79528bf929744e2297e0d Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2490/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..22954af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f6269d80e80d533650308b212c92ce6b30224aa7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2491/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22954af..4d92c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,18 +34,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 100eed147f805c6e8d9f02a3e7cb3f4498e262b3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 1 Sep 2025 00:22:43 +0300 Subject: [PATCH 2492/2596] update --- CMakeLists copy.txt | 143 +++++++++++ CMakeLists.txt | 29 +-- command | 11 +- command copy | 52 ++++ include/dmxdenoiser/Config copy.hpp | 29 +++ include/dmxdenoiser/Config.hpp | 2 +- .../filters/ConvolutionCUDA copy.hpp | 12 + .../dmxdenoiser/filters/ConvolutionCUDA.hpp | 12 + src/filters/ConvolutionCUDA copy.cu | 35 +++ src/filters/ConvolutionCUDA.cu | 5 +- src/filters/ConvolutionFilter copy.cpp | 224 ++++++++++++++++++ src/filters/ConvolutionFilter.cpp | 4 - 12 files changed, 533 insertions(+), 25 deletions(-) create mode 100644 CMakeLists copy.txt create mode 100644 command copy create mode 100644 include/dmxdenoiser/Config copy.hpp create mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp create mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA.hpp create mode 100644 src/filters/ConvolutionCUDA copy.cu create mode 100644 src/filters/ConvolutionFilter copy.cpp diff --git a/CMakeLists copy.txt b/CMakeLists copy.txt new file mode 100644 index 0000000..1d99cd3 --- /dev/null +++ b/CMakeLists copy.txt @@ -0,0 +1,143 @@ +cmake_minimum_required(VERSION 3.23) + +project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) + +# ---- Options +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) + +# ---- C++ setup +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") + +# Output dirs (bin/ lib/) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) + +# ---- Dependencies: OpenEXR + Imath (prefer CONFIG, fallback to modules) +# Try config packages first (v3+) +find_package(Imath CONFIG QUIET) +find_package(OpenEXR CONFIG QUIET) + +# Fallback to classic find modules (v2.x dev packages) +if(NOT Imath_FOUND) + find_package(Imath CONFIG REQUIRED) # provides Imath::Imath and/or IlmBase::Imath +endif() +if(NOT OpenEXR_FOUND) + find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR or legacy targets +endif() + + +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() + +# Include headers +include_directories(${CMAKE_SOURCE_DIR}/include) + +# ---- Sources (CPP always; CU optional when BUILD_CUDA=ON) +file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS + ${CMAKE_SOURCE_DIR}/src/*.cpp +) + +# keep CLI separate so we can add it explicitly to the exe +set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) + + +if(BUILD_CUDA) + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + add_compile_definitions(DMX_ENABLE_CUDA=1) + file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS + ${CMAKE_SOURCE_DIR}/src/*.cu + ) +else() + add_compile_definitions(DMX_ENABLE_CUDA=0) + set(SRC_CU) +endif() + + +# ---- Executable (DIRECTLY links all sources → static registrars run) +add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) + + +# CLI executable +#add_executable(dmxdenoiser ${SRC_FILES} cli/main.cpp) + +target_include_directories(dmxdenoiser + PUBLIC + ${CMAKE_SOURCE_DIR}/include +) + +# Link OpenEXR/Imath via whatever targets exist +target_link_libraries(dmxdenoiser + PUBLIC + $<$:OpenEXR::OpenEXR> + $<$:Imath::Imath> + $<$:Imath::Half> + $<$:OpenEXR::IlmImf> + $<$:IlmBase::Imath> + $<$:IlmBase::Half> + $<$:IlmBase::IlmThread> + $<$:Iex::Iex> +) + +if(BUILD_CUDA) + target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) +endif() + + + +# ---- Tests +if(BUILD_TESTING) + include(FetchContent) + include(CTest) + enable_testing() + + FetchContent_Declare( + googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG v1.14.0 + ) + FetchContent_MakeAvailable(googletest) + + file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) + + foreach(test_src ${TEST_SOURCES}) + get_filename_component(test_name ${test_src} NAME_WE) + # Build each test with the same src set (direct linkage) + add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) + target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) + target_link_libraries(${test_name} PRIVATE + gtest_main + $<$:OpenEXR::OpenEXR> + $<$:Imath::Imath> + $<$:Imath::Half> + $<$:OpenEXR::IlmImf> + $<$:IlmBase::Imath> + $<$:IlmBase::Half> + $<$:IlmBase::IlmThread> + $<$:Iex::Iex> + ) + if(BUILD_CUDA) + target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) + endif() + add_test(NAME ${test_name} COMMAND ${test_name}) + endforeach() +endif() + + diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d92c23..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,6 @@ cmake_minimum_required(VERSION 3.23) -project(DenoiseMachineX - VERSION 0.1.0 - LANGUAGES CXX -) +project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) # ---- Options option(BUILD_CUDA "Build CUDA backends" ON) @@ -34,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 8e982d8..84958ae 100644 --- a/command +++ b/command @@ -40,4 +40,13 @@ if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" -cmake --build build -j 8 --config Release \ No newline at end of file +cmake --build build -j 8 --config Release + +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ +cmake -S . -B build -G Ninja ^ + -DCMAKE_BUILD_TYPE=Release ^ + -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ + -DCMAKE_CUDA_ARCHITECTURES=native && ^ +cmake --build build -j8 && ^ +ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file diff --git a/command copy b/command copy new file mode 100644 index 0000000..84958ae --- /dev/null +++ b/command copy @@ -0,0 +1,52 @@ +./dmxdenoiser + --start 1 + --end 100 + --gpu 0 + --frames 3 + --beauty default + --albedo albedo + --normal tech.####.exr:N + --depth tech.####.exr:z + --aluxary + --output filtered.####.exr + + +# Install openexr on Windows +git clone https://github.com/microsoft/vcpkg.git +cd vcpkg +.\bootstrap-vcpkg.bat +.\vcpkg\vcpkg.exe install --triplet x64-windows + +grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt +# should print: CMAKE_BUILD_TYPE:STRING=Release + +rm -f CMakeCache.txt CMakeFiles 2>/dev/null || true + +# Debug tree +Debug build & run tests: +cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug +(cmake --build build-debug -j 8 && cd build-debug && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Release tree +Release build & run tests: +cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release +(cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release + +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ +cmake -S . -B build -G Ninja ^ + -DCMAKE_BUILD_TYPE=Release ^ + -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ + -DCMAKE_CUDA_ARCHITECTURES=native && ^ +cmake --build build -j8 && ^ +ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file diff --git a/include/dmxdenoiser/Config copy.hpp b/include/dmxdenoiser/Config copy.hpp new file mode 100644 index 0000000..e93da2d --- /dev/null +++ b/include/dmxdenoiser/Config copy.hpp @@ -0,0 +1,29 @@ +// Config.hpp +#pragma once + +#ifndef NDEBUG + #define DMX_DEBUG_BUILD 1 +#else + #define DMX_DEBUG_BUILD 0 +#endif + + +#if !defined(DMX_ENABLE_CUDA) + #define DMX_ENABLE_CUDA 0 +#endif + +#if defined(__CUDACC__) || defined(__CUDA_ARCH__) + #define DMX_CPU_GPU __host__ __device__ + #if defined(_MSC_VER) + #define DMX_INLINE __forceinline + #else + #define DMX_INLINE inline __attribute__((always_inline)) + #endif +#else + #define DMX_CPU_GPU + #if defined(_MSC_VER) + #define DMX_INLINE __forceinline + #else + #define DMX_INLINE inline __attribute__((always_inline)) + #endif +#endif diff --git a/include/dmxdenoiser/Config.hpp b/include/dmxdenoiser/Config.hpp index b6ae5a5..e93da2d 100644 --- a/include/dmxdenoiser/Config.hpp +++ b/include/dmxdenoiser/Config.hpp @@ -12,7 +12,7 @@ #define DMX_ENABLE_CUDA 0 #endif -#if defined(__CUDAACC___) +#if defined(__CUDACC__) || defined(__CUDA_ARCH__) #define DMX_CPU_GPU __host__ __device__ #if defined(_MSC_VER) #define DMX_INLINE __forceinline diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp b/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp new file mode 100644 index 0000000..07d2e05 --- /dev/null +++ b/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp @@ -0,0 +1,12 @@ +// ConvolutionCUDA.hpp +#pragma once + +#include + +namespace dmxdenoiser +{ + + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + const Kernel2D& kernel_, float strength, bool filterAlpha); + +} // namespace dmxdenoiser diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA.hpp b/include/dmxdenoiser/filters/ConvolutionCUDA.hpp new file mode 100644 index 0000000..07d2e05 --- /dev/null +++ b/include/dmxdenoiser/filters/ConvolutionCUDA.hpp @@ -0,0 +1,12 @@ +// ConvolutionCUDA.hpp +#pragma once + +#include + +namespace dmxdenoiser +{ + + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + const Kernel2D& kernel_, float strength, bool filterAlpha); + +} // namespace dmxdenoiser diff --git a/src/filters/ConvolutionCUDA copy.cu b/src/filters/ConvolutionCUDA copy.cu new file mode 100644 index 0000000..ce1b5ad --- /dev/null +++ b/src/filters/ConvolutionCUDA copy.cu @@ -0,0 +1,35 @@ +#include +#include + +#include + +namespace dmxdenoiser +{ + + __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha) + { + int x = blockIdx.x * blockDim.x + threadIdx.x; + int y = blockIdx.y * blockDim.y + threadIdx.y; + int s = blockIdx.z; + + int frameIdx = layers[s / layersSize]; + int layerIdx = layers[s % layersSize]; + int frame = frames[frameIdx]; + int layer = layers[layerIdx]; + int offset = kernelSize/2; + + PixelRGBA orig = in.get(x, y, frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = clampf(x + kx, 0, in.width - 1); + int py = clampf(y + ky, 0, in.height - 1); + sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, strength, filterAlpha); + out.at(x, y, frame, layer) = sum; + } + +} // namespace dmxdenoiser diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 9b18f9b..ce1b5ad 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -24,13 +24,12 @@ namespace dmxdenoiser for(int ky = -offset; ky <= offset; ++ky) for(int kx = -offset; kx <= offset; ++kx) { - int px = clampf(to_int(x) + kx, 0, in.width - 1); - int py = clampf(to_int(y) + ky, 0, in.height - 1); + int px = clampf(x + kx, 0, in.width - 1); + int py = clampf(y + ky, 0, in.height - 1); sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); } sum = blendPixels(orig, sum, strength, filterAlpha); out.at(x, y, frame, layer) = sum; - } } // namespace dmxdenoiser diff --git a/src/filters/ConvolutionFilter copy.cpp b/src/filters/ConvolutionFilter copy.cpp new file mode 100644 index 0000000..a5771c7 --- /dev/null +++ b/src/filters/ConvolutionFilter copy.cpp @@ -0,0 +1,224 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace dmxdenoiser +{ + + void ConvolutionFilter::setParams(const ParamDictionary& params) + { + resetParams(); + + std::string paramsInfo{}; + + if (auto v = params.getSingleParam("strength")) { + m_strength = *v; + paramsInfo += " strength (set) = " + std::to_string(m_strength) + "\n"; + } + else + { + paramsInfo += " strength (default) = " + std::to_string(m_strength) + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'strength' parameter not set, using default: ", m_strength); + } + + if (auto v = params.getArrayParam("frames")) + { + m_frames = *v; + paramsInfo += " frames (set) = " + joinVector(m_frames, ", ", "[","]", "all") + "\n"; + } + else + { + paramsInfo += " frames (default) = " + joinVector(m_frames, ", ", "[","]", "all") + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'frames' parameter not set, using 'default' value: ", + joinVector(m_frames, ", ", "[","]", "all")); + } + + if (auto v = params.getArrayParam("layers")) + { + m_layers = *v; + paramsInfo += " layers (set) = " + joinVector(m_layers, ", ", "[","]", "all") + "\n"; + } + else + { + paramsInfo += " layers (default) = " + joinVector(m_layers, ", ", "[","]", "all") + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", + "setParams(): 'layers' parameter not set, using default: ", joinVector(m_layers, ", ", "[","]", "all")); + } + + if (auto v = params.getSingleParam("filterAlpha")) + { + m_filterAlpha = *v; + paramsInfo += " filterAlpha (set) = " + std::string(m_filterAlpha ? "true" : "false") + "\n"; + } + else + { + paramsInfo += " filterAlpha (default) = " + std::string(m_filterAlpha ? "true" : "false") + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", + "setParams(): 'filterAlpha' parameter not set, using default: ", m_filterAlpha); + } + + if (auto v = params.getSingleParam("backend")) + { + m_backend = *v; + paramsInfo += " backend (set) = " + dmxdenoiser::ToString(m_backend) + "\n"; + } + else + { + paramsInfo += " backend (default) = " + dmxdenoiser::ToString(m_backend) + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", + "setParams(): 'backend' parameter not set, using default: ", dmxdenoiser::ToString(m_backend)); + } + + if (auto v = params.getSingleParam("backendResource")) + { + m_backendResource = *v; + paramsInfo += " backendResource (set) = \n" + m_backendResource.ToString(10) + "\n"; + } + else + { + paramsInfo += " backendResource (default) = \n" + m_backendResource.ToString(10) + "\n"; + DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'backendResource' parameter not set, using default: \n", m_backendResource.ToString(10)); + } + + if (auto v = params.getSingleParam("kernel")) { + m_kernel.set(*v); + paramsInfo += " kernel (set) = " + m_kernel.ToString() + "\n"; + } + else + { + DMX_LOG_ERROR("ConvolutionFilter", "setParams(): Missing required parameter 'kernel'"); + throw std::runtime_error("ConvolutionFilter::setParams(): Missing required parameter 'kernel'"); + } + DMX_LOG_INFO("ConvolutionFilter", "Setup filter settings:\nParameters:\n", paramsInfo); + }; + + void ConvolutionFilter::convolveCPU(const DMXImage& input, DMXImage& output) const + { + ThreadPool* pool = m_backendResource.threadPool; + if(!pool) + DMX_LOG_WARNING("ConvolutionFilter", "convolveCPU(): no ThreadPool available; running single-threaded"); + + int width = input.width(); + int height = input.height(); + int ksize = m_kernel.size(); + int offset = ksize/2; + + std::vector framesIndices; + // If no specific frames were set, process all frames by default. + if (m_frames.empty()) + { + for (int i = 0; i < input.numFrames(); ++i) // Add all frames + framesIndices.push_back(i); + } else { + for (int i = 0; i < m_frames.size(); ++i) + { + int requestedFrame = m_frames[i]; + if(requestedFrame < input.numFrames()) + framesIndices.push_back(requestedFrame); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested frame ", + requestedFrame, " not found; skipping"); + } + } + + std::vector layerIndices; + // If no specific layers were set, process by default. + if (m_layers.empty()) { + layerIndices = input.getFilteringLayersIndices(); + } else { + for (const auto& layer : m_layers) + { + if (input.hasLayer(layer)) + layerIndices.push_back(input.getLayerIndex(layer)); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested layer '", layer, "' not found; skipping"); + } + } + + for(int frameIdx = 0; frameIdx < framesIndices.size(); ++frameIdx) + { + int frame = framesIndices[frameIdx]; + for(int layerIdx = 0; layerIdx < layerIndices.size(); ++layerIdx) + { + int layer = layerIndices[layerIdx]; + parallelFor(0, to_i64(height), [&](std::int64_t y) { + for(std::int64_t x = 0; x < to_i64(width); ++x) + { + PixelRGBA orig = input.get(to_int(x), to_int(y), frame, layer); + PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; + for(int ky = -offset; ky <= offset; ++ky) + for(int kx = -offset; kx <= offset; ++kx) + { + int px = std::clamp(to_int(x) + kx, 0, width - 1); + int py = std::clamp(to_int(y) + ky, 0, height - 1); + sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); + } + sum = blendPixels(orig, sum, m_strength, m_filterAlpha); + output.at(to_int(x), to_int(y), frame, layer) = sum; + } + }, pool); + } + } + } + + void ConvolutionFilter::convolveGPU(const DMXImage& input, DMXImage& output) const + { + #if DMX_ENABLE_CUDA + // GPU logic + #else + DMX_LOG_ERROR("ConvolutionFilter", "convolveGPU(): no CUDA build"); + throw std::runtime_error("convolveGPU(): no CUDA build"); + #endif + } + + void ConvolutionFilter::convolveMETAL(const DMXImage& input, DMXImage& output) const + { + //#if DMX_ENABLE_METAL + // // METAL logic + //#else + DMX_LOG_ERROR("ConvolutionFilter", "convolveMETAL(): no METAL build"); + throw std::runtime_error("convolveMETAL(): no METAL build"); + //#endif + } + + void ConvolutionFilter::applyFilter(const DMXImage& in, DMXImage& out) const + { + if (m_kernel.size() == 0) { + DMX_LOG_ERROR("ConvolutionFilter", "applyFilter(): Kernel is empty, size=0x0"); + throw std::runtime_error("ConvolutionFilter::applyFilter(): Kernel is empty, size=0x0"); + } + + if (m_backend == Backend::CPU) { + this->convolveCPU(in, out); + } else if (m_backend == Backend::GPU) { + this->convolveGPU(in, out); + } else if (m_backend == Backend::METAL) { + this->convolveMETAL(in, out); + } + }; + + std::string ConvolutionFilter::ToString() const + { + // IN PROGRESS + return "ConvolutionFilter: \n" + m_kernel.ToString(4); + }; + + REGISTER_FILTER(ConvolutionFilter) + +} // namespace dmxdenoiser + + diff --git a/src/filters/ConvolutionFilter.cpp b/src/filters/ConvolutionFilter.cpp index c899645..a5771c7 100644 --- a/src/filters/ConvolutionFilter.cpp +++ b/src/filters/ConvolutionFilter.cpp @@ -8,10 +8,6 @@ #include #include -#if DMX_ENABLE_CUDA - #include -#endif - #include #include #include From 6934c16960f240924f736f50777d332effae5568 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2493/2596] Update --- src/filters/ConvolutionCUDA copy.cu | 16 +++++++++++++++- src/filters/ConvolutionCUDA.cu | 16 +++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/src/filters/ConvolutionCUDA copy.cu b/src/filters/ConvolutionCUDA copy.cu index ce1b5ad..237ecdd 100644 --- a/src/filters/ConvolutionCUDA copy.cu +++ b/src/filters/ConvolutionCUDA copy.cu @@ -1,4 +1,6 @@ +#include #include +#include #include #include @@ -6,7 +8,7 @@ namespace dmxdenoiser { - __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + __global__ void convolve2D_CUDA_kernel(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, float* kernel, int kernelSize, float strength, bool filterAlpha) { int x = blockIdx.x * blockDim.x + threadIdx.x; @@ -32,4 +34,16 @@ namespace dmxdenoiser out.at(x, y, frame, layer) = sum; } + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + const Kernel2D& kernel_, float strength, bool filterAlpha) + { + int framesSize = frames_.size(); + int* frames = new int[framesSize]; + int layersSize = layers_.size(); + int* layers = new int[layersSize]; + + + convolve2D_CUDA_kernel<<<>>> + } + } // namespace dmxdenoiser diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index ce1b5ad..237ecdd 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,4 +1,6 @@ +#include #include +#include #include #include @@ -6,7 +8,7 @@ namespace dmxdenoiser { - __global__ void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + __global__ void convolve2D_CUDA_kernel(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, float* kernel, int kernelSize, float strength, bool filterAlpha) { int x = blockIdx.x * blockDim.x + threadIdx.x; @@ -32,4 +34,16 @@ namespace dmxdenoiser out.at(x, y, frame, layer) = sum; } + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + const Kernel2D& kernel_, float strength, bool filterAlpha) + { + int framesSize = frames_.size(); + int* frames = new int[framesSize]; + int layersSize = layers_.size(); + int* layers = new int[layersSize]; + + + convolve2D_CUDA_kernel<<<>>> + } + } // namespace dmxdenoiser From 6cb56f071fe8c3d431530464ff0dbd29a273f066 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2494/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bc5f1e1ecc4f1b06741d51078e9f77b7321c3ac8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2495/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28c1ea909e61d3fa15fb993680f9130c4cd825c7 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2496/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9c4acc11b846b13c153cb975d35c386d189d3409 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2497/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f40d1e2f294ae9fac12cee754b36a04b1afe7ca5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2498/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c511bccd88c47fd34ff3b1f96f97afbd0bf32ba4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2499/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5437939ad47c5cf2ccbb8f57381dd9a9c969f213 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2500/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b4c438ed743b9103752ef0345454ee16e05f71d4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2501/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 15216c0f5afdf35767123fdcc7fc911044ca3222 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2502/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 31749ad30d1966c5f9da87cc5531c6099ee19721 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2503/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c6c9d89cf27a3f854f073216c4f4caf7a74789ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2504/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 501d18a60613d20e1dae71442650505d46a84819 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2505/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3ad0373c53c81d07870ae8836e1aa16788d23e1f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2506/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ebfa1f7d915801895fdb7c888e1acd9ddc384341 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2507/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 5afeba6dd00cd516d94799e10265edca62d23a56 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2508/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ac6f7d9ca8c65ac4053bcc1d38557a28be1bbe66 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2509/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From de8451277239d80bdf396725d51d3a940b160b60 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2510/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7243b7402f780c82905abb47a1e5f500ae8e92e9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2511/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fda97a0eb9eba78fe1dd47543be25ab3b561f334 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2512/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 21bfb5dd904d108ee6ad9b82987a0e9f0fff1170 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2513/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b14f7b7f680881beb4ad28780189fb8269995ebe Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2514/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 304fc9b0723bbb3ad6784874ef4118aee1f8b9ea Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2515/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ec9c7e68228030736c11f9bdfd0b85d69695662c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2516/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From c597794f9a059b672b0e919ec9f45c8db728ad13 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2517/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3fb64b5a96c69097568400e527d21ffec5eb16ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2518/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1f5954b27fbf71c8c28daef4034cd2ff58733c90 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2519/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 37defbf542f1444e11c2a470ce610e87188e4771 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2520/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 235abc48ce2204578cc00fee66a1ba573ab78ac1 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2521/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6811a62449b63a35a662163652fb252fd2ee3b51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2522/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 879ac861c05fb58b809a28cdfc61b46fdc229125 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2523/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d270ca6024c7a48586ad3ed6f25471101d59fdd0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2524/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 54fe6d292b5dd1af7f89eba319def2ca3ed69966 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2525/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 93b3cbf911dcab709265bf8d257c91dead287ddb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2526/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 7a81f9f36aac2e1f9e946ce3be98f0ea9f4d848f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2527/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9379c00d838f31fe09cf4dce30f7488781443727 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2528/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d39db7e5152927559af27cab8a703e357b38d057 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2529/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fd76dc3924e0dbf4473ce5b37889b7b36f255522 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2530/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 6328c7ba5f0affafca42ea26a38bde297acaeecd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2531/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d6e9fe023ba03026a5f36f2d19959c62a2cf7d8f Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2532/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 70d66741fa53ddb175ee1966b786808d08c3cb89 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2533/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ command | 19 ------------------- 2 files changed, 12 insertions(+), 31 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 84958ae..3324ec5 100644 --- a/command +++ b/command @@ -31,22 +31,3 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) - -# Windows -# 1. cleanup: -if (Test-Path build) { Remove-Item build -Recurse -Force } -if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } -if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } - -cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` - -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" -cmake --build build -j 8 --config Release - -call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ -cmake -S . -B build -G Ninja ^ - -DCMAKE_BUILD_TYPE=Release ^ - -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ - -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ - -DCMAKE_CUDA_ARCHITECTURES=native && ^ -cmake --build build -j8 && ^ -ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file From febb4e34a6249943b6ccd4332b56f51c3cc7d89e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2534/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 28dd99cf518e22d65ec1ce69b7e4dc935daface8 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2535/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cb79d12dd1a3627888ee4197f2abbfa3e53e89df Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2536/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 741f74ea89548582e1d51618a0ab51c45b7a0c03 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2537/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1499c67b71228417a8d3b27e3807a1d5d56cf2ac Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2538/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From fc10ac37431fb2085cc996fcfdc9591055692136 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2539/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f8ad1972526e3ab8bef55d4844705163e2b3dfdc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2540/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 003a232bdd2b4acd16366a9eeb12d1bda2a00bdc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2541/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2f96b4f00f288da3c1f1a02f48084f6b53841a77 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2542/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b3f99a8f9161bf6f0010bc3d1d0208fe6ffb31db Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2543/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 265e56a5c794bddaf8bc879c540d06823479e934 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2544/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ef57e93052e838f2cfd235a1214aefbb2ffbdb29 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2545/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From ff926a9002f09ebd3d999513d9c772756a462b83 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2546/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 8030b7f56dcbeed95688e3b8e2acf9c710f1cfb5 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2547/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 1ed4d222d32c374cc93398702b3822be3c352779 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2548/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From cc5bbf6aecb45ad0c6daaf32739033cae0f2d570 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2549/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From d23b674f9c07aa5da03034b7947304843ed2d0bc Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2550/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 2d7fcf011df091bbdc42542894f667d8d662ed59 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2551/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From dedb085d70e253a0cf5d1edcf1d5fa0b4f87e154 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2552/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 09c24b7ac1c05fcbff9f5c9bd68b2b8c061914aa Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2553/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ command | 10 ++++++++++ 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) diff --git a/command b/command index 3324ec5..8e982d8 100644 --- a/command +++ b/command @@ -31,3 +31,13 @@ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug Release build & run tests: cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release (cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) + +# Windows +# 1. cleanup: +if (Test-Path build) { Remove-Item build -Recurse -Force } +if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } +if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } + +cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` + -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" +cmake --build build -j 8 --config Release \ No newline at end of file From 3416b962ec041b0a9fa029286038431d9435b273 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2554/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From bae93de6cf4135520f38140501229ab264705f7e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2555/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From b1d3e33545049c5713f6d12abfac58c3d9a208ca Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2556/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 44769619edeb677b4c128d6b24c1b970f04d6e28 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2557/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 69d4658b099b5a994561c9e4e731add7ba5f92ef Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2558/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 108aebad7b9b003219bf473aca01db5eb59070d3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2559/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f419ce60f5a3a62b560937ceeaa91d5bc9aec63b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2560/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 3c04f8bd769308c1090feedd88e7851f758daa68 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2561/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 40ed27fd6f60040d2c58a9d50f9b363ef9267bc9 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2562/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 13fd124d6fcbeca1e03e6e4d1bd2976fb730b0ba Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2563/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 274d488f75532746d57f44bc05dfa759ddcd3397 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2564/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e00a30b0787b870fc9bc4b571deb4c12615393c3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2565/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 829f569ea414891ebdcf8bebf4b0a77b3eff3fe2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2566/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4b6fc069fe875195d22cbe8ea23eae3d751222b4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2567/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From f995c2666e966fd79f56d1f281ad493241ba0fdd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2568/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From e439ad56b1fb4e0c5e4dcb337143a2b99fcbb077 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2569/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 4a37bf39e165e90d8491ebf7da6c768983ac8a4e Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2570/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 503ac1c9f1d0362e19ef9d5c752daa4a05e9b776 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2571/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 9e3ef8b6e9648449c40fad2b6b0147f5bfd3da51 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2572/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 00aceea6ff76f36afca9e31b8d973b61f3d24604 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 01:22:48 +0300 Subject: [PATCH 2573/2596] Update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..1d99cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) -endif() +#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) +# message(FATAL_ERROR +# "\nOpenEXR and/or Imath not found!\n" +# "Please install them before configuring this project.\n" +# "On macOS, run:\n" +# " brew install openexr imath\n" +# "On Ubuntu/Debian, run:\n" +# " sudo apt install libopenexr-dev libimath-dev\n" +# "On Windows (vcpkg):\n" +# " vcpkg install openexr\n" +# ) +#endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From 63287ff3d9f0393b1baa6bd0fad95fa58e3e63a3 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sat, 23 Aug 2025 18:36:21 +0300 Subject: [PATCH 2574/2596] update --- CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d99cd3..0e67c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,18 +31,18 @@ if(NOT OpenEXR_FOUND) endif() -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() +if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) + message(FATAL_ERROR + "\nOpenEXR and/or Imath not found!\n" + "Please install them before configuring this project.\n" + "On macOS, run:\n" + " brew install openexr imath\n" + "On Ubuntu/Debian, run:\n" + " sudo apt install libopenexr-dev libimath-dev\n" + "On Windows (vcpkg):\n" + " vcpkg install openexr\n" + ) +endif() # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) From a38bdf30f361e5b691209236174483845bd02262 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 00:10:47 +0300 Subject: [PATCH 2575/2596] update convolutioncuda --- src/filters/ConvolutionCUDA.cu | 1 + 1 file changed, 1 insertion(+) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 237ecdd..c67a44d 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -2,6 +2,7 @@ #include #include #include +#include #include From 0a24845d6ae09523b137b5ac907d6ed1c6f69461 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 02:15:09 +0300 Subject: [PATCH 2576/2596] update --- CMakeLists.txt | 93 +++++++++++++++++++++++++++------- src/filters/ConvolutionCUDA.cu | 4 +- 2 files changed, 78 insertions(+), 19 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e67c9d..e0d5c7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,9 +17,73 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -# ---- Dependencies: OpenEXR + Imath (prefer CONFIG, fallback to modules) -# Try config packages first (v3+) -find_package(Imath CONFIG QUIET) + +if(BUILD_CUDA) + # Try to locate nvcc explicitly + find_program(NVCC_EXECUTABLE + NAMES nvcc nvcc.exe + HINTS "$ENV{CUDA_PATH}/bin" + PATHS + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" + ) + + if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") + set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) + message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + # Good defaults + set(CMAKE_CUDA_STANDARD 17) + set(CMAKE_CUDA_STANDARD_REQUIRED ON) + set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 + add_compile_definitions(DMX_ENABLE_CUDA=1) + else() + message(WARNING + "CUDA not configured: nvcc not found. " + "Set CUDA_PATH or install CUDA, or pass -DCMAKE_CUDA_COMPILER=... . " + "Building without GPU.") + set(BUILD_CUDA OFF) + add_compile_definitions(DMX_ENABLE_CUDA=0) + endif() +endif() + + +if(BUILD_CUDA) + # 1) Locate nvcc (your existing logic is fine) + find_program(NVCC_EXECUTABLE + NAMES nvcc nvcc.exe + HINTS "$ENV{CUDA_PATH}/bin" + ) + + if(NVCC_EXECUTABLE) + set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) + + # 2) Reuse the MSVC compiler CMake already detected + if(MSVC AND CMAKE_CXX_COMPILER) + set(CMAKE_CUDA_HOST_COMPILER + "${CMAKE_CXX_COMPILER}" + CACHE FILEPATH "CUDA host compiler" FORCE) + endif() + + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + + set(CMAKE_CUDA_STANDARD 17) + set(CMAKE_CUDA_STANDARD_REQUIRED ON) + set(CMAKE_CUDA_ARCHITECTURES native) + add_compile_definitions(DMX_ENABLE_CUDA=1) + else() + message(WARNING "nvcc not found → building without GPU. Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") + set(BUILD_CUDA OFF) + add_compile_definitions(DMX_ENABLE_CUDA=0) + endif() +endif() + + +# Prefer config packages first +find_package(Imath CONFIG QUIET) find_package(OpenEXR CONFIG QUIET) # Fallback to classic find modules (v2.x dev packages) @@ -27,22 +91,17 @@ if(NOT Imath_FOUND) find_package(Imath CONFIG REQUIRED) # provides Imath::Imath and/or IlmBase::Imath endif() if(NOT OpenEXR_FOUND) - find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR or legacy targets + find_package(OpenEXR REQUIRED) # provides OpenEXR::OpenEXR or legacy targets endif() - -if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) - message(FATAL_ERROR - "\nOpenEXR and/or Imath not found!\n" - "Please install them before configuring this project.\n" - "On macOS, run:\n" - " brew install openexr imath\n" - "On Ubuntu/Debian, run:\n" - " sudo apt install libopenexr-dev libimath-dev\n" - "On Windows (vcpkg):\n" - " vcpkg install openexr\n" - ) +# Sanity: targets must exist now (either system or vendored) +if(NOT TARGET Imath::Imath) + message(FATAL_ERROR "Imath::Imath target not available") endif() +if(NOT TARGET OpenEXR::OpenEXR) + message(FATAL_ERROR "OpenEXR::OpenEXR target not available") +endif() + # Include headers include_directories(${CMAKE_SOURCE_DIR}/include) @@ -57,8 +116,6 @@ set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) if(BUILD_CUDA) - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) add_compile_definitions(DMX_ENABLE_CUDA=1) file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index c67a44d..6f4d854 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -2,10 +2,12 @@ #include #include #include -#include #include +namespace dmxdenoiser +{ + namespace dmxdenoiser { From caae498205bd9ab88230e02351791add6d02423b Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 31 Aug 2025 20:22:55 +0300 Subject: [PATCH 2577/2596] update --- CMakeLists.txt | 253 ++++++------------ CMakePresets.json | 4 +- command | 21 +- .../dmxdenoiser/filters/ConvolutionCUDA.cuh | 10 + include/dmxdenoiser/utils/NumericUtils.hpp | 10 +- src/filters/ConvolutionFilter.cpp | 45 +++- 6 files changed, 168 insertions(+), 175 deletions(-) create mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA.cuh diff --git a/CMakeLists.txt b/CMakeLists.txt index e0d5c7a..265c566 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,200 +1,121 @@ -cmake_minimum_required(VERSION 3.23) +cmake_minimum_required(VERSION 3.26) project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) -# ---- Options -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) -# ---- C++ setup set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") - -# Output dirs (bin/ lib/) +# Output dirs set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) - -if(BUILD_CUDA) - # Try to locate nvcc explicitly - find_program(NVCC_EXECUTABLE - NAMES nvcc nvcc.exe - HINTS "$ENV{CUDA_PATH}/bin" - PATHS - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" - ) - - if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") - set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) - message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - # Good defaults - set(CMAKE_CUDA_STANDARD 17) - set(CMAKE_CUDA_STANDARD_REQUIRED ON) - set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 - add_compile_definitions(DMX_ENABLE_CUDA=1) - else() - message(WARNING - "CUDA not configured: nvcc not found. " - "Set CUDA_PATH or install CUDA, or pass -DCMAKE_CUDA_COMPILER=... . " - "Building without GPU.") - set(BUILD_CUDA OFF) - add_compile_definitions(DMX_ENABLE_CUDA=0) - endif() -endif() - - -if(BUILD_CUDA) - # 1) Locate nvcc (your existing logic is fine) - find_program(NVCC_EXECUTABLE - NAMES nvcc nvcc.exe - HINTS "$ENV{CUDA_PATH}/bin" - ) - - if(NVCC_EXECUTABLE) - set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) - - # 2) Reuse the MSVC compiler CMake already detected - if(MSVC AND CMAKE_CXX_COMPILER) - set(CMAKE_CUDA_HOST_COMPILER - "${CMAKE_CXX_COMPILER}" - CACHE FILEPATH "CUDA host compiler" FORCE) - endif() - - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - - set(CMAKE_CUDA_STANDARD 17) - set(CMAKE_CUDA_STANDARD_REQUIRED ON) - set(CMAKE_CUDA_ARCHITECTURES native) - add_compile_definitions(DMX_ENABLE_CUDA=1) - else() - message(WARNING "nvcc not found → building without GPU. Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") - set(BUILD_CUDA OFF) - add_compile_definitions(DMX_ENABLE_CUDA=0) - endif() -endif() - - -# Prefer config packages first -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) - -# Fallback to classic find modules (v2.x dev packages) -if(NOT Imath_FOUND) - find_package(Imath CONFIG REQUIRED) # provides Imath::Imath and/or IlmBase::Imath -endif() -if(NOT OpenEXR_FOUND) - find_package(OpenEXR REQUIRED) # provides OpenEXR::OpenEXR or legacy targets -endif() - -# Sanity: targets must exist now (either system or vendored) -if(NOT TARGET Imath::Imath) - message(FATAL_ERROR "Imath::Imath target not available") -endif() -if(NOT TARGET OpenEXR::OpenEXR) - message(FATAL_ERROR "OpenEXR::OpenEXR target not available") -endif() - - -# Include headers -include_directories(${CMAKE_SOURCE_DIR}/include) - -# ---- Sources (CPP always; CU optional when BUILD_CUDA=ON) -file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cpp -) - -# keep CLI separate so we can add it explicitly to the exe +include(FetchContent) + +# ---- Imath & OpenEXR (v3) +#FetchContent_Declare(Imath +# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git +# GIT_TAG v3.1.10 +#) +#FetchContent_MakeAvailable(Imath) +# +#FetchContent_Declare(OpenEXR +# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git +# GIT_TAG v3.2.4 +#) +#FetchContent_MakeAvailable(OpenEXR) + +# ---- Dependencies from vcpkg +find_package(Imath CONFIG REQUIRED) # provides Imath::Imath +find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR +# find_package(ZLIB REQUIRED) # usually not needed explicitly + +# ---- Sources +file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) - +set(SRC_CU) if(BUILD_CUDA) - add_compile_definitions(DMX_ENABLE_CUDA=1) - file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cu - ) -else() - add_compile_definitions(DMX_ENABLE_CUDA=0) - set(SRC_CU) + enable_language(CUDA) + find_package(CUDAToolkit REQUIRED) + file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) endif() - -# ---- Executable (DIRECTLY links all sources → static registrars run) +# ---- Executable add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) - -# CLI executable -#add_executable(dmxdenoiser ${SRC_FILES} cli/main.cpp) - +# Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) target_include_directories(dmxdenoiser - PUBLIC - ${CMAKE_SOURCE_DIR}/include + BEFORE PUBLIC + $ + $ + $ # parent of Imath/ + $ + $ # parent of OpenEXR/ + $ ) -# Link OpenEXR/Imath via whatever targets exist target_link_libraries(dmxdenoiser - PUBLIC - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> + PUBLIC + Imath::Imath + OpenEXR::OpenEXR ) if(BUILD_CUDA) + target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=1) target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) + set_target_properties(dmxdenoiser PROPERTIES + CUDA_SEPARABLE_COMPILATION ON + CUDA_ARCHITECTURES native + ) +else() + target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=0) endif() - +# Silence MSVC deprecation spam from OpenEXR threadpool atomics +if(MSVC) + add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) +endif() # ---- Tests if(BUILD_TESTING) - include(FetchContent) - include(CTest) - enable_testing() - - FetchContent_Declare( - googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG v1.14.0 + include(CTest) + FetchContent_Declare(googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG v1.14.0 + ) + FetchContent_MakeAvailable(googletest) + + file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) + foreach(test_src ${TEST_SOURCES}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) + target_include_directories(${test_name} + BEFORE PRIVATE + ${CMAKE_SOURCE_DIR}/include + ${imath_SOURCE_DIR}/src + ${imath_BINARY_DIR}/config + ${openexr_SOURCE_DIR}/src/lib + ${openexr_BINARY_DIR}/config ) - FetchContent_MakeAvailable(googletest) - - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) - - foreach(test_src ${TEST_SOURCES}) - get_filename_component(test_name ${test_src} NAME_WE) - # Build each test with the same src set (direct linkage) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) - target_link_libraries(${test_name} PRIVATE - gtest_main - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> + target_link_libraries(${test_name} PRIVATE gtest_main Imath::Imath OpenEXR::OpenEXR) + if(BUILD_CUDA) + target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=1) + target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(${test_name} PROPERTIES + CUDA_SEPARABLE_COMPILATION ON + CUDA_ARCHITECTURES native ) - if(BUILD_CUDA) - target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) - endif() - add_test(NAME ${test_name} COMMAND ${test_name}) - endforeach() + else() + target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=0) + endif() + if(MSVC) + target_compile_definitions(${test_name} + PUBLIC _SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) + endif() + add_test(NAME ${test_name} COMMAND ${test_name}) + endforeach() endif() - - diff --git a/CMakePresets.json b/CMakePresets.json index 9c29a88..1bdd8d1 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -33,9 +33,11 @@ "generator": "Ninja Multi-Config", "binaryDir": "${sourceDir}/build-win-cuda", "cacheVariables": { - "CMAKE_BUILD_TYPE": "Release", + "CMAKE_BUILD_TYPE": "Debug", "BUILD_TESTING": "ON", "BUILD_CUDA": "ON", + "CMAKE_C_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", "CMAKE_CUDA_COMPILER": "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe", "CMAKE_CUDA_ARCHITECTURES": "native" } diff --git a/command b/command index 8e982d8..303013b 100644 --- a/command +++ b/command @@ -40,4 +40,23 @@ if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" -cmake --build build -j 8 --config Release \ No newline at end of file +cmake --build build -j 8 --config Release + +# Build and run: +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 +cmake -S . -B build -G Ninja ` + -DCMAKE_TOOLCHAIN_FILE="$PWD/vcpkg/scripts/buildsystems/vcpkg.cmake" ` + -DCMAKE_CXX_COMPILER="C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe" ` + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ` + -DCMAKE_CUDA_ARCHITECTURES=native +cmake --build build -j8 +cd build && ctest --output-on-failure --verbose -j 8 && cd .. + +call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ +cmake -S . -B build -G Ninja ^ + -DCMAKE_BUILD_TYPE=Release ^ + -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ + -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ + -DCMAKE_CUDA_ARCHITECTURES=native && ^ +cmake --build build -j8 && ^ +ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA.cuh b/include/dmxdenoiser/filters/ConvolutionCUDA.cuh new file mode 100644 index 0000000..54ca75c --- /dev/null +++ b/include/dmxdenoiser/filters/ConvolutionCUDA.cuh @@ -0,0 +1,10 @@ +#pragma once + +#include +#include + +namespace dmxdenoiser +{ + void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, + float* kernel, int kernelSize, float strength, bool filterAlpha); +} // namespace dmxdenoiser diff --git a/include/dmxdenoiser/utils/NumericUtils.hpp b/include/dmxdenoiser/utils/NumericUtils.hpp index bd6a49d..b27c615 100644 --- a/include/dmxdenoiser/utils/NumericUtils.hpp +++ b/include/dmxdenoiser/utils/NumericUtils.hpp @@ -37,14 +37,12 @@ namespace dmxdenoiser return abs_c(a - b) < epsilon; } - DMX_CPU_GPU - constexpr inline float clampf(float x, float lo, float hi) { - return (x > hi) ? hi : ((x < lo) ? lo : x); + DMX_CPU_GPU constexpr inline float clampf(float x, float min, float max) { + return (x > max) ? max : ((x < min) ? min : x); } - // Blend two floats - DMX_CPU_GPU - constexpr inline float floatsBlend(float a, float b, float t) noexcept { + // Blend two floats + DMX_CPU_GPU constexpr inline float floatsBlend(float a, float b, float t) noexcept { t = clampf(t, 0.0f, 1.0f); return a + (b - a) * t; } diff --git a/src/filters/ConvolutionFilter.cpp b/src/filters/ConvolutionFilter.cpp index a5771c7..fb07f26 100644 --- a/src/filters/ConvolutionFilter.cpp +++ b/src/filters/ConvolutionFilter.cpp @@ -8,6 +8,10 @@ #include #include +#if DMX_ENABLE_CUDA + #include +#endif + #include #include #include @@ -178,7 +182,46 @@ namespace dmxdenoiser void ConvolutionFilter::convolveGPU(const DMXImage& input, DMXImage& output) const { #if DMX_ENABLE_CUDA - // GPU logic + ThreadPool* pool = m_backendResource.threadPool; + if(!pool) + DMX_LOG_WARNING("ConvolutionFilter", "convolveCPU(): no ThreadPool available; running single-threaded"); + + int width = input.width(); + int height = input.height(); + int ksize = m_kernel.size(); + int offset = ksize/2; + + std::vector framesIndices; + // If no specific frames were set, process all frames by default. + if (m_frames.empty()) + { + for (int i = 0; i < input.numFrames(); ++i) // Add all frames + framesIndices.push_back(i); + } else { + for (int i = 0; i < m_frames.size(); ++i) + { + int requestedFrame = m_frames[i]; + if(requestedFrame < input.numFrames()) + framesIndices.push_back(requestedFrame); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested frame ", + requestedFrame, " not found; skipping"); + } + } + + std::vector layerIndices; + // If no specific layers were set, process by default. + if (m_layers.empty()) { + layerIndices = input.getFilteringLayersIndices(); + } else { + for (const auto& layer : m_layers) + { + if (input.hasLayer(layer)) + layerIndices.push_back(input.getLayerIndex(layer)); + else + DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested layer '", layer, "' not found; skipping"); + } + } #else DMX_LOG_ERROR("ConvolutionFilter", "convolveGPU(): no CUDA build"); throw std::runtime_error("convolveGPU(): no CUDA build"); From b27a913c325e26015db0a6b9a260e4424a8f25f2 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 1 Sep 2025 05:52:11 +0300 Subject: [PATCH 2578/2596] feat: first working convo2D GPU version --- CMakeLists copy.txt | 296 ------------------ CMakeLists.txt | 71 +---- command | 4 +- examples/palm_pixel_art.exr | Bin 0 -> 646573 bytes include/dmxdenoiser/Config.hpp | 7 +- include/dmxdenoiser/DMXError.hpp | 3 +- include/dmxdenoiser/DMXImage.hpp | 6 +- include/dmxdenoiser/DMXImageView.hpp | 14 +- include/dmxdenoiser/Pixel.hpp | 88 +++--- .../filters/ConvolutionCUDA copy.hpp | 12 - .../dmxdenoiser/filters/ConvolutionCUDA.cuh | 10 - .../dmxdenoiser/filters/ConvolutionCUDA.hpp | 2 +- include/dmxdenoiser/utils/NumericUtils.hpp | 8 +- src/DMXImage.cpp | 3 +- src/filters/ConvolutionCUDA copy.cu | 49 --- src/filters/ConvolutionCUDA.cu | 105 ++++++- src/filters/ConvolutionFilter copy.cpp | 224 ------------- src/filters/ConvolutionFilter.cpp | 16 +- tests/ConvolutionFilter_test.cpp | 19 ++ 19 files changed, 193 insertions(+), 744 deletions(-) delete mode 100644 CMakeLists copy.txt create mode 100644 examples/palm_pixel_art.exr delete mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp delete mode 100644 include/dmxdenoiser/filters/ConvolutionCUDA.cuh delete mode 100644 src/filters/ConvolutionCUDA copy.cu delete mode 100644 src/filters/ConvolutionFilter copy.cpp diff --git a/CMakeLists copy.txt b/CMakeLists copy.txt deleted file mode 100644 index dee9d48..0000000 --- a/CMakeLists copy.txt +++ /dev/null @@ -1,296 +0,0 @@ -cmake_minimum_required(VERSION 3.23) - -project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) - -# ---- Options -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) - -# ---- C++ setup -set(CMAKE_CXX_STANDARD 20) -set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") - -# Output dirs (bin/ lib/) -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) - -# ---- CUDA (Ninja-friendly, no VS toolset required) -if(BUILD_CUDA) - # Find nvcc explicitly (works with Ninja Multi-Config) - find_program(NVCC_EXECUTABLE - NAMES nvcc nvcc.exe - HINTS "$ENV{CUDA_PATH}/bin" - PATHS - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.4/bin" - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.3/bin" - ) - if(NVCC_EXECUTABLE AND EXISTS "${NVCC_EXECUTABLE}") - set(CMAKE_CUDA_COMPILER "${NVCC_EXECUTABLE}" CACHE FILEPATH "nvcc" FORCE) - message(STATUS "Using CUDA compiler: ${CMAKE_CUDA_COMPILER}") - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - set(CMAKE_CUDA_STANDARD 17) - set(CMAKE_CUDA_STANDARD_REQUIRED ON) - set(CMAKE_CUDA_ARCHITECTURES native) # or 75;86;89 - add_compile_definitions(DMX_ENABLE_CUDA=1) - else() - message(WARNING "CUDA not configured: nvcc not found. Building CPU-only. " - "Set CUDA_PATH or pass -DCMAKE_CUDA_COMPILER=...") - set(BUILD_CUDA OFF) - add_compile_definitions(DMX_ENABLE_CUDA=0) - endif() -else() - add_compile_definitions(DMX_ENABLE_CUDA=0) -endif() - -# ---- Dependencies: prefer config packages; fallback to vendoring -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) - -if(NOT TARGET Imath::Imath OR NOT TARGET OpenEXR::OpenEXR) - include(FetchContent) - - if(NOT TARGET Imath::Imath) - message(STATUS "Fetching Imath…") - FetchContent_Declare( - imath - GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git - GIT_TAG v3.1.11 - ) - set(IMATH_BUILD_TESTS OFF CACHE BOOL "" FORCE) - set(IMATH_BUILD_TOOLS OFF CACHE BOOL "" FORCE) - set(IMATH_INSTALL OFF CACHE BOOL "" FORCE) - FetchContent_MakeAvailable(imath) - # Let OpenEXR see vendored Imath - set(Imath_DIR "${imath_BINARY_DIR}/config" CACHE PATH "" FORCE) - endif() - - if(NOT TARGET OpenEXR::OpenEXR) - message(STATUS "Fetching OpenEXR…") - FetchContent_Declare( - openexr - GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git - GIT_TAG v3.2.4 - ) - set(OPENEXR_BUILD_UTILS OFF CACHE BOOL "" FORCE) - set(OPENEXR_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) - set(OPENEXR_BUILD_TESTS OFF CACHE BOOL "" FORCE) - set(OPENEXR_INSTALL OFF CACHE BOOL "" FORCE) - FetchContent_MakeAvailable(openexr) - endif() -endif() - -# Sanity: imported targets must exist now -if(NOT TARGET Imath::Imath) - message(FATAL_ERROR "Imath::Imath target not available") -endif() -if(NOT TARGET OpenEXR::OpenEXR) - message(FATAL_ERROR "OpenEXR::OpenEXR target not available") -endif() - -# ---- Sources -file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) -set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) - -if(BUILD_CUDA) - file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) -else() - set(SRC_CU) -endif() - -# ---- Executable -add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) - -target_include_directories(dmxdenoiser PUBLIC ${CMAKE_SOURCE_DIR}/include) - -target_link_libraries(dmxdenoiser - PUBLIC - Imath::Imath - OpenEXR::OpenEXR - $<$:CUDA::cudart> - $<$:CUDA::cuda_driver> -) - -if(BUILD_CUDA) - set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) -endif() - -# ---- Tests -if(BUILD_TESTING) - include(CTest) - include(FetchContent) - - FetchContent_Declare( - googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG v1.14.0 - ) - set(BUILD_GMOCK OFF CACHE BOOL "" FORCE) - set(INSTALL_GTEST OFF CACHE BOOL "" FORCE) - FetchContent_MakeAvailable(googletest) - - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) - foreach(test_src ${TEST_SOURCES}) - get_filename_component(test_name ${test_src} NAME_WE) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) - target_link_libraries(${test_name} PRIVATE - gtest_main - Imath::Imath - OpenEXR::OpenEXR - $<$:CUDA::cudart> - $<$:CUDA::cuda_driver> - ) - if(BUILD_CUDA) - set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) - endif() - add_test(NAME ${test_name} COMMAND ${test_name}) - endforeach() -endif() - -cmake_minimum_required(VERSION 3.23) - -project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) - -# ---- Options -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) - -# ---- C++ setup -set(CMAKE_CXX_STANDARD 20) -set(CMAKE_CXX_STANDARD_REQUIRED ON) - -set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g") - -# Output dirs (bin/ lib/) -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) - -# ---- Dependencies: OpenEXR + Imath (prefer CONFIG, fallback to modules) -# Try config packages first (v3+) -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) - -# Fallback to classic find modules (v2.x dev packages) -if(NOT Imath_FOUND) - find_package(Imath CONFIG REQUIRED) # provides Imath::Imath and/or IlmBase::Imath -endif() -if(NOT OpenEXR_FOUND) - find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR or legacy targets -endif() - - -#if(NOT OpenEXR_FOUND OR NOT Imath_FOUND) -# message(FATAL_ERROR -# "\nOpenEXR and/or Imath not found!\n" -# "Please install them before configuring this project.\n" -# "On macOS, run:\n" -# " brew install openexr imath\n" -# "On Ubuntu/Debian, run:\n" -# " sudo apt install libopenexr-dev libimath-dev\n" -# "On Windows (vcpkg):\n" -# " vcpkg install openexr\n" -# ) -#endif() - -# Include headers -include_directories(${CMAKE_SOURCE_DIR}/include) - -# ---- Sources (CPP always; CU optional when BUILD_CUDA=ON) -file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cpp -) - -# keep CLI separate so we can add it explicitly to the exe -set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) - - -if(BUILD_CUDA) - enable_language(CUDA) - find_package(CUDAToolkit REQUIRED) - add_compile_definitions(DMX_ENABLE_CUDA=1) - file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS - ${CMAKE_SOURCE_DIR}/src/*.cu - ) -else() - add_compile_definitions(DMX_ENABLE_CUDA=0) - set(SRC_CU) -endif() - - -# ---- Executable (DIRECTLY links all sources → static registrars run) -add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) - - -# CLI executable -#add_executable(dmxdenoiser ${SRC_FILES} cli/main.cpp) - -target_include_directories(dmxdenoiser - PUBLIC - ${CMAKE_SOURCE_DIR}/include -) - -# Link OpenEXR/Imath via whatever targets exist -target_link_libraries(dmxdenoiser - PUBLIC - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> -) - -if(BUILD_CUDA) - target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON) -endif() - - - -# ---- Tests -if(BUILD_TESTING) - include(FetchContent) - include(CTest) - enable_testing() - - FetchContent_Declare( - googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG v1.14.0 - ) - FetchContent_MakeAvailable(googletest) - - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) - - foreach(test_src ${TEST_SOURCES}) - get_filename_component(test_name ${test_src} NAME_WE) - # Build each test with the same src set (direct linkage) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} PRIVATE ${CMAKE_SOURCE_DIR}/include) - target_link_libraries(${test_name} PRIVATE - gtest_main - $<$:OpenEXR::OpenEXR> - $<$:Imath::Imath> - $<$:Imath::Half> - $<$:OpenEXR::IlmImf> - $<$:IlmBase::Imath> - $<$:IlmBase::Half> - $<$:IlmBase::IlmThread> - $<$:Iex::Iex> - ) - if(BUILD_CUDA) - target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(${test_name} PROPERTIES CUDA_SEPARABLE_COMPILATION ON) - endif() - add_test(NAME ${test_name} COMMAND ${test_name}) - endforeach() -endif() - - diff --git a/CMakeLists.txt b/CMakeLists.txt index a5bd4a2..022f400 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,17 +1,13 @@ cmake_minimum_required(VERSION 3.26) -cmake_minimum_required(VERSION 3.26) project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) option(BUILD_CUDA "Build CUDA backends" ON) option(BUILD_TESTING "Build tests" ON) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -# Output dirs # Output dirs set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) @@ -41,19 +37,19 @@ find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) -set(SRC_CU) -set(SRC_CU) if(BUILD_CUDA) enable_language(CUDA) find_package(CUDAToolkit REQUIRED) + add_compile_definitions(DMX_ENABLE_CUDA=1) file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) +else() + add_compile_definitions(DMX_ENABLE_CUDA=0) + set(SRC_CU) endif() -# ---- Executable # ---- Executable add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) -# Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) # Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) target_include_directories(dmxdenoiser BEFORE PUBLIC @@ -65,46 +61,23 @@ target_include_directories(dmxdenoiser $ ) - BEFORE PUBLIC - $ - $ - $ # parent of Imath/ - $ - $ # parent of OpenEXR/ - $ -) - target_link_libraries(dmxdenoiser PUBLIC Imath::Imath OpenEXR::OpenEXR - PUBLIC - Imath::Imath - OpenEXR::OpenEXR ) if(BUILD_CUDA) - target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=1) target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=1) target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON CUDA_ARCHITECTURES native ) -else() - target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=0) - set_target_properties(dmxdenoiser PROPERTIES - CUDA_SEPARABLE_COMPILATION ON - CUDA_ARCHITECTURES native - ) else() target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=0) endif() -# Silence MSVC deprecation spam from OpenEXR threadpool atomics -if(MSVC) - add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) -endif() # Silence MSVC deprecation spam from OpenEXR threadpool atomics if(MSVC) add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) @@ -119,42 +92,6 @@ if(BUILD_TESTING) ) FetchContent_MakeAvailable(googletest) - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) - foreach(test_src ${TEST_SOURCES}) - get_filename_component(test_name ${test_src} NAME_WE) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} - BEFORE PRIVATE - ${CMAKE_SOURCE_DIR}/include - ${imath_SOURCE_DIR}/src - ${imath_BINARY_DIR}/config - ${openexr_SOURCE_DIR}/src/lib - ${openexr_BINARY_DIR}/config - ) - target_link_libraries(${test_name} PRIVATE gtest_main Imath::Imath OpenEXR::OpenEXR) - if(BUILD_CUDA) - target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=1) - target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(${test_name} PROPERTIES - CUDA_SEPARABLE_COMPILATION ON - CUDA_ARCHITECTURES native - ) - else() - target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=0) - endif() - if(MSVC) - target_compile_definitions(${test_name} - PUBLIC _SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) - endif() - add_test(NAME ${test_name} COMMAND ${test_name}) - endforeach() - include(CTest) - FetchContent_Declare(googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG v1.14.0 - ) - FetchContent_MakeAvailable(googletest) - file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) foreach(test_src ${TEST_SOURCES}) get_filename_component(test_name ${test_src} NAME_WE) diff --git a/command b/command index 303013b..8918030 100644 --- a/command +++ b/command @@ -58,5 +58,5 @@ cmake -S . -B build -G Ninja ^ -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ -DCMAKE_CUDA_ARCHITECTURES=native && ^ -cmake --build build -j8 && ^ -ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file +cmake --build build -j16 && ^ +ctest --test-dir build --output-on-failure --verbose -j16 \ No newline at end of file diff --git a/examples/palm_pixel_art.exr b/examples/palm_pixel_art.exr new file mode 100644 index 0000000000000000000000000000000000000000..3be9ca290c8596f7796fd9f101c89d8726bd3670 GIT binary patch literal 646573 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

1MoD`X<$9b057wqRosAq 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 #define DMX_TRAP(MSG) std::runtime_error(MSG) #endif + diff --git a/include/dmxdenoiser/DMXImage.hpp b/include/dmxdenoiser/DMXImage.hpp index 858daa7..bc8f924 100644 --- a/include/dmxdenoiser/DMXImage.hpp +++ b/include/dmxdenoiser/DMXImage.hpp @@ -2,6 +2,8 @@ #pragma once #include +#include +#include #include #include @@ -13,8 +15,6 @@ namespace dmxdenoiser { - inline constexpr int DEFAULT_NUM_CHANNELS = 4; // RGBA global internal fixed size for all images - struct DMXImageOptions { int width{}; @@ -78,7 +78,7 @@ namespace dmxdenoiser bool hasValidLayerDictionary() const { return m_layers.size() != 0; } std::string ToString(std::size_t indent=0) const; - + void clear(); ~DMXImage() = default; diff --git a/include/dmxdenoiser/DMXImageView.hpp b/include/dmxdenoiser/DMXImageView.hpp index cca23b0..58325fd 100644 --- a/include/dmxdenoiser/DMXImageView.hpp +++ b/include/dmxdenoiser/DMXImageView.hpp @@ -27,19 +27,25 @@ namespace dmxdenoiser } DMX_CPU_GPU - PixelRGBAView at(int x, int y, int frame, int layer) { + float* at(int x, int y, int frame, int layer) { int index = getIndex(x, y, frame, layer); - return PixelRGBAView{ data[index], data[index + 1], data[index + 2], data[index + 3] }; + return &data[index]; } + DMX_CPU_GPU + float* at(int x, int y, int frame, int layer) const { + int index = getIndex(x, y, frame, layer); + return &data[index]; + } + /* DMX_CPU_GPU PixelRGBA get(int x, int y, int frame, int layer) { int index = getIndex(x, y, frame, layer); return PixelRGBA{ data[index], data[index + 1], data[index + 2], data[index + 3] }; } - + */ private: - DMX_CPU_GPU int getIndex(int x, int y, int frame, int layer) { + DMX_CPU_GPU int getIndex(int x, int y, int frame, int layer) const { return (((frame * numLayers + layer) * height + y) * width + x) * numChannels; } diff --git a/include/dmxdenoiser/Pixel.hpp b/include/dmxdenoiser/Pixel.hpp index 2a007a0..33239d3 100644 --- a/include/dmxdenoiser/Pixel.hpp +++ b/include/dmxdenoiser/Pixel.hpp @@ -15,48 +15,48 @@ namespace dmxdenoiser float b; float a; - DMX_CPU_GPU DMX_INLINE explicit operator PixelRGBAView(); // 'explicit' to prevent implicit conversions (PixelRGBA <-> PixelRGBAView) - - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator=(const PixelRGBA&) = default; - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator=(const PixelRGBAView& pv); - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator+=(const PixelRGBA& p) { r += p.r; g += p.g; b += p.b; a += p.a; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator+=(float value) { r += value; g += value; b += value; a += value; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator-=(const PixelRGBA& p) { r -= p.r; g -= p.g; b -= p.b; a -= p.a; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator-=(float value) { r -= value; g -= value; b -= value; a -= value; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator*=(const PixelRGBA& p) { r *= p.r; g *= p.g; b *= p.b; a *= p.a; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator*=(float value) { r *= value; g *= value; b *= value; a *= value; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator/=(const PixelRGBA& p) { r /= p.r; g /= p.g; b /= p.b; a /= p.a; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& operator/=(float value) { r /= value; g /= value; b /= value; a /= value; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBA operator-() const { return PixelRGBA{ -r, -g, -b, -a}; } - - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator+(const PixelRGBA& p1, const PixelRGBA& p2) { + explicit operator PixelRGBAView(); // 'explicit' to prevent implicit conversions (PixelRGBA <-> PixelRGBAView) + + PixelRGBA& operator=(const PixelRGBA&) = default; + PixelRGBA& operator=(const PixelRGBAView& pv); + PixelRGBA& operator+=(const PixelRGBA& p) { r += p.r; g += p.g; b += p.b; a += p.a; return *this; } + PixelRGBA& operator+=(float value) { r += value; g += value; b += value; a += value; return *this; } + PixelRGBA& operator-=(const PixelRGBA& p) { r -= p.r; g -= p.g; b -= p.b; a -= p.a; return *this; } + PixelRGBA& operator-=(float value) { r -= value; g -= value; b -= value; a -= value; return *this; } + PixelRGBA& operator*=(const PixelRGBA& p) { r *= p.r; g *= p.g; b *= p.b; a *= p.a; return *this; } + PixelRGBA& operator*=(float value) { r *= value; g *= value; b *= value; a *= value; return *this; } + PixelRGBA& operator/=(const PixelRGBA& p) { r /= p.r; g /= p.g; b /= p.b; a /= p.a; return *this; } + PixelRGBA& operator/=(float value) { r /= value; g /= value; b /= value; a /= value; return *this; } + PixelRGBA operator-() const { return PixelRGBA{ -r, -g, -b, -a}; } + + friend PixelRGBA operator+(const PixelRGBA& p1, const PixelRGBA& p2) { return PixelRGBA{p1.r + p2.r, p1.g + p2.g, p1.b + p2.b, p1.a + p2.a}; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator+(const PixelRGBA& p, float value) { + friend PixelRGBA operator+(const PixelRGBA& p, float value) { return PixelRGBA{ p.r + value, p.g + value, p.b + value, p.a + value }; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator+(float value, const PixelRGBA& p) { return p + value; } + friend PixelRGBA operator+(float value, const PixelRGBA& p) { return p + value; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator-(const PixelRGBA& p1, const PixelRGBA& p2) { + friend PixelRGBA operator-(const PixelRGBA& p1, const PixelRGBA& p2) { return PixelRGBA{p1.r - p2.r, p1.g - p2.g, p1.b - p2.b, p1.a - p2.a}; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator-(const PixelRGBA& p, float value) { + friend PixelRGBA operator-(const PixelRGBA& p, float value) { return PixelRGBA{ p.r - value, p.g - value, p.b - value, p.a - value }; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator-(float value, const PixelRGBA& p) { return p - value; } + friend PixelRGBA operator-(float value, const PixelRGBA& p) { return p - value; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator*(const PixelRGBA& p1, const PixelRGBA& p2) { + friend PixelRGBA operator*(const PixelRGBA& p1, const PixelRGBA& p2) { return PixelRGBA{p1.r * p2.r, p1.g * p2.g, p1.b * p2.b, p1.a * p2.a}; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator*(const PixelRGBA& p, float value) { + friend PixelRGBA operator*(const PixelRGBA& p, float value) { return PixelRGBA{ p.r * value, p.g * value, p.b * value, p.a * value }; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator*(float value, const PixelRGBA& p) { return p * value; } + friend PixelRGBA operator*(float value, const PixelRGBA& p) { return p * value; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator/(const PixelRGBA& p1, const PixelRGBA& p2) { + friend PixelRGBA operator/(const PixelRGBA& p1, const PixelRGBA& p2) { return PixelRGBA{p1.r / p2.r, p1.g / p2.g, p1.b / p2.b, p1.a / p2.a}; } - DMX_CPU_GPU DMX_INLINE friend PixelRGBA operator/(const PixelRGBA& p, float value) { + friend PixelRGBA operator/(const PixelRGBA& p, float value) { return PixelRGBA{ p.r / value, p.g / value, p.b / value, p.a / value }; } @@ -71,54 +71,54 @@ namespace dmxdenoiser /// @brief Conversion operator to PixelRGBA. /// @note Marked [[nodiscard]] to warn if the result is not used. - [[nodiscard]] DMX_CPU_GPU DMX_INLINE explicit operator PixelRGBA() const{ + [[nodiscard]] explicit operator PixelRGBA() const{ return {r, g, b, a}; } - DMX_CPU_GPU DMX_INLINE PixelRGBAView(float& r_, float& g_, float& b_, float& a_) + PixelRGBAView(float& r_, float& g_, float& b_, float& a_) : r{r_}, g{g_}, b{b_}, a{a_} {} - DMX_CPU_GPU DMX_INLINE PixelRGBAView(PixelRGBA& p) + PixelRGBAView(PixelRGBA& p) : r{p.r}, g{p.g}, b{p.b}, a{p.a} {} - DMX_CPU_GPU DMX_INLINE PixelRGBAView(const PixelRGBAView&) = delete; - DMX_CPU_GPU DMX_INLINE PixelRGBAView(PixelRGBAView&&) = delete; - DMX_CPU_GPU DMX_INLINE PixelRGBAView& operator=(PixelRGBAView&&) = delete; - DMX_CPU_GPU DMX_INLINE PixelRGBAView& operator=(const PixelRGBAView& pv) { r = pv.r; g = pv.g; b = pv.b; a = pv.a; return *this; } - DMX_CPU_GPU DMX_INLINE PixelRGBAView& operator=(const PixelRGBA& p) { r = p.r; g = p.g; b = p.b; a = p.a; return *this; } + PixelRGBAView(const PixelRGBAView&) = delete; + PixelRGBAView(PixelRGBAView&&) = delete; + PixelRGBAView& operator=(PixelRGBAView&&) = delete; + PixelRGBAView& operator=(const PixelRGBAView& pv) { r = pv.r; g = pv.g; b = pv.b; a = pv.a; return *this; } + PixelRGBAView& operator=(const PixelRGBA& p) { r = p.r; g = p.g; b = p.b; a = p.a; return *this; } }; - DMX_CPU_GPU DMX_INLINE PixelRGBA::operator PixelRGBAView() { return PixelRGBAView{r, g, b, a}; } - DMX_CPU_GPU DMX_INLINE PixelRGBA& PixelRGBA::operator=(const PixelRGBAView& pv) { r = pv.r; g = pv.g; b = pv.b; a = pv.a; return *this; }; + inline PixelRGBA::operator PixelRGBAView() { return PixelRGBAView{r, g, b, a}; } + inline PixelRGBA& PixelRGBA::operator=(const PixelRGBAView& pv) { r = pv.r; g = pv.g; b = pv.b; a = pv.a; return *this; }; - DMX_CPU_GPU DMX_INLINE bool operator==(const PixelRGBA& p1, const PixelRGBA& p2) { + inline bool operator==(const PixelRGBA& p1, const PixelRGBA& p2) { return floatsEqual(p1.r, p2.r) && floatsEqual(p1.g, p2.g) && floatsEqual(p1.b, p2.b) && floatsEqual(p1.a, p2.a); } - DMX_CPU_GPU DMX_INLINE bool operator==(const PixelRGBAView& pv1, const PixelRGBAView& pv2) { + inline bool operator==(const PixelRGBAView& pv1, const PixelRGBAView& pv2) { return floatsEqual(pv1.r, pv2.r) && floatsEqual(pv1.g, pv2.g) && floatsEqual(pv1.b, pv2.b) && floatsEqual(pv1.a, pv2.a); } - DMX_CPU_GPU DMX_INLINE bool operator==(const PixelRGBA& p, const PixelRGBAView& pv) { + inline bool operator==(const PixelRGBA& p, const PixelRGBAView& pv) { return floatsEqual(p.r, pv.r) && floatsEqual(p.g, pv.g) && floatsEqual(p.b, pv.b) && floatsEqual(p.a, pv.a); } - DMX_CPU_GPU DMX_INLINE bool operator==(const PixelRGBAView& pv, const PixelRGBA& p) { return p == pv; } + inline bool operator==(const PixelRGBAView& pv, const PixelRGBA& p) { return p == pv; } - DMX_CPU_GPU DMX_INLINE bool operator!=(const PixelRGBA& p1, const PixelRGBA& p2) { return !(p1 == p2); } - DMX_CPU_GPU DMX_INLINE bool operator!=(const PixelRGBAView& pv1, const PixelRGBAView& pv2) { return !(pv1 == pv2); } + inline bool operator!=(const PixelRGBA& p1, const PixelRGBA& p2) { return !(p1 == p2); } + inline bool operator!=(const PixelRGBAView& pv1, const PixelRGBAView& pv2) { return !(pv1 == pv2); } - DMX_CPU_GPU DMX_INLINE bool operator!=(const PixelRGBA& p, const PixelRGBAView& pv) { return !(p == pv); } - DMX_CPU_GPU DMX_INLINE bool operator!=(const PixelRGBAView& pv, const PixelRGBA& p) { return p != pv; } + inline bool operator!=(const PixelRGBA& p, const PixelRGBAView& pv) { return !(p == pv); } + inline bool operator!=(const PixelRGBAView& pv, const PixelRGBA& p) { return p != pv; } - DMX_CPU_GPU DMX_INLINE PixelRGBA blendPixels(const PixelRGBA& a, const PixelRGBA& b, float t, bool alphaBlend=false) noexcept { + inline PixelRGBA blendPixels(const PixelRGBA& a, const PixelRGBA& b, float t, bool alphaBlend=false) noexcept { PixelRGBA p{ floatsBlend(a.r, b.r, t), floatsBlend(a.g, b.g, t), diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp b/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp deleted file mode 100644 index 07d2e05..0000000 --- a/include/dmxdenoiser/filters/ConvolutionCUDA copy.hpp +++ /dev/null @@ -1,12 +0,0 @@ -// ConvolutionCUDA.hpp -#pragma once - -#include - -namespace dmxdenoiser -{ - - void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, - const Kernel2D& kernel_, float strength, bool filterAlpha); - -} // namespace dmxdenoiser diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA.cuh b/include/dmxdenoiser/filters/ConvolutionCUDA.cuh deleted file mode 100644 index 54ca75c..0000000 --- a/include/dmxdenoiser/filters/ConvolutionCUDA.cuh +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include -#include - -namespace dmxdenoiser -{ - void convolve2D_CUDA(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize, float strength, bool filterAlpha); -} // namespace dmxdenoiser diff --git a/include/dmxdenoiser/filters/ConvolutionCUDA.hpp b/include/dmxdenoiser/filters/ConvolutionCUDA.hpp index 07d2e05..e0836c1 100644 --- a/include/dmxdenoiser/filters/ConvolutionCUDA.hpp +++ b/include/dmxdenoiser/filters/ConvolutionCUDA.hpp @@ -6,7 +6,7 @@ namespace dmxdenoiser { - void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, const std::vector& frames_, const std::vector& layers_, const Kernel2D& kernel_, float strength, bool filterAlpha); } // namespace dmxdenoiser diff --git a/include/dmxdenoiser/utils/NumericUtils.hpp b/include/dmxdenoiser/utils/NumericUtils.hpp index b27c615..66a2cf9 100644 --- a/include/dmxdenoiser/utils/NumericUtils.hpp +++ b/include/dmxdenoiser/utils/NumericUtils.hpp @@ -37,12 +37,16 @@ namespace dmxdenoiser return abs_c(a - b) < epsilon; } - DMX_CPU_GPU constexpr inline float clampf(float x, float min, float max) { + DMX_CPU_GPU /*constexpr*/ inline int clampi(int x, int min, int max) { + return (x > max) ? max : ((x < min) ? min : x); + } + + DMX_CPU_GPU /*constexpr*/ inline float clampf(float x, float min, float max) { return (x > max) ? max : ((x < min) ? min : x); } // Blend two floats - DMX_CPU_GPU constexpr inline float floatsBlend(float a, float b, float t) noexcept { + DMX_CPU_GPU /*constexpr*/ inline float floatsBlend(float a, float b, float t) noexcept { t = clampf(t, 0.0f, 1.0f); return a + (b - a) * t; } diff --git a/src/DMXImage.cpp b/src/DMXImage.cpp index d41211d..e61dbb6 100644 --- a/src/DMXImage.cpp +++ b/src/DMXImage.cpp @@ -1,5 +1,6 @@ -#include #include +#include +#include #include #include diff --git a/src/filters/ConvolutionCUDA copy.cu b/src/filters/ConvolutionCUDA copy.cu deleted file mode 100644 index 237ecdd..0000000 --- a/src/filters/ConvolutionCUDA copy.cu +++ /dev/null @@ -1,49 +0,0 @@ -#include -#include -#include -#include - -#include - -namespace dmxdenoiser -{ - - __global__ void convolve2D_CUDA_kernel(DMXImageView in, DMXImageView out, int* frames, int framesSize, int* layers, int layersSize, - float* kernel, int kernelSize, float strength, bool filterAlpha) - { - int x = blockIdx.x * blockDim.x + threadIdx.x; - int y = blockIdx.y * blockDim.y + threadIdx.y; - int s = blockIdx.z; - - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; - int frame = frames[frameIdx]; - int layer = layers[layerIdx]; - int offset = kernelSize/2; - - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = clampf(x + kx, 0, in.width - 1); - int py = clampf(y + ky, 0, in.height - 1); - sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, strength, filterAlpha); - out.at(x, y, frame, layer) = sum; - } - - void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, - const Kernel2D& kernel_, float strength, bool filterAlpha) - { - int framesSize = frames_.size(); - int* frames = new int[framesSize]; - int layersSize = layers_.size(); - int* layers = new int[layersSize]; - - - convolve2D_CUDA_kernel<<<>>> - } - -} // namespace dmxdenoiser diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 6f4d854..5e3d19f 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -1,12 +1,16 @@ +#include #include #include #include +#include #include +#include + #include -namespace dmxdenoiser -{ +#define CUDA_CHECK(x) do { cudaError_t _e = (x); if (_e != cudaSuccess) \ + throw std::runtime_error(std::string("CUDA error: ")+cudaGetErrorString(_e)); } while(0) namespace dmxdenoiser { @@ -18,35 +22,102 @@ namespace dmxdenoiser int y = blockIdx.y * blockDim.y + threadIdx.y; int s = blockIdx.z; - int frameIdx = layers[s / layersSize]; - int layerIdx = layers[s % layersSize]; + if (x >= in.width || y >= in.height) return; + + const int total = framesSize * layersSize; + if (s >= total) return; + + int frameIdx = s / layersSize; + int layerIdx = s % layersSize; int frame = frames[frameIdx]; int layer = layers[layerIdx]; - int offset = kernelSize/2; + int offset = kernelSize >> 1; - PixelRGBA orig = in.get(x, y, frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) + float* orig = in.at(x, y, frame, layer); + float sum_r = 0.0f; float sum_g = 0.0f; float sum_b = 0.0f; float sum_a = 0.0f; + for(int ky = -offset; ky <= offset; ++ky) + { + int py = clampi(y + ky, 0, in.height - 1); + int krow = (ky + offset)*kernelSize; for(int kx = -offset; kx <= offset; ++kx) { - int px = clampf(x + kx, 0, in.width - 1); - int py = clampf(y + ky, 0, in.height - 1); - sum += kernel[(ky + offset)*kernelSize + (kx + offset)] * in.get(px, py, frame, layer); + int px = clampi(x + kx, 0, in.width - 1); + float w = kernel[krow + (kx + offset)]; + float* p = in.at(px, py, frame, layer); + sum_r += w * p[0]; + sum_g += w * p[1]; + sum_b += w * p[2]; + sum_a += w * p[3]; } - sum = blendPixels(orig, sum, strength, filterAlpha); - out.at(x, y, frame, layer) = sum; + } + float out_r = floatsBlend(orig[0], sum_r, strength); + float out_g = floatsBlend(orig[1], sum_g, strength); + float out_b = floatsBlend(orig[2], sum_b, strength); + float out_a = filterAlpha ? floatsBlend(orig[3], sum_a, strength) : orig[3]; + + float* dist = out.at(x, y, frame, layer); + dist[0] = out_r; dist[1] = out_g; dist[2] = out_b; dist[3] = out_a; } - void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, std::vector frames_, std::vector layers_, + void convolve2D_CUDA(const DMXImage& in_, DMXImage& out_, const std::vector& frames_, const std::vector& layers_, const Kernel2D& kernel_, float strength, bool filterAlpha) { + DMXImage out_tmp = in_; + int framesSize = frames_.size(); - int* frames = new int[framesSize]; int layersSize = layers_.size(); - int* layers = new int[layersSize]; + int kernelSize = kernel_.size(); + std::size_t N = in_.data().size(); + + int* d_frames = nullptr; + int* d_layers = nullptr; + float* d_kernel = nullptr; + float* d_in = nullptr; + float* d_out = nullptr; + DMXImageView in; + in.width = in_.width(); + in.height = in_.height(); + in.numLayers = in_.numLayers(); + in.numFrames = in_.numFrames(); + in.numChannels = in_.numChannels(); + DMXImageView out = in; + + CUDA_CHECK(cudaMalloc(&d_frames, framesSize*sizeof(int))); + CUDA_CHECK(cudaMalloc(&d_layers, layersSize*sizeof(int))); + CUDA_CHECK(cudaMalloc(&d_kernel, kernelSize*kernelSize*sizeof(float))); + CUDA_CHECK(cudaMalloc(&d_in, N*sizeof(float))); + CUDA_CHECK(cudaMalloc(&d_out, N*sizeof(float))); + + CUDA_CHECK(cudaMemcpy(d_frames, frames_.data(), framesSize*sizeof(int), cudaMemcpyHostToDevice)); + CUDA_CHECK(cudaMemcpy(d_layers, layers_.data(), layersSize*sizeof(int), cudaMemcpyHostToDevice)); + CUDA_CHECK(cudaMemcpy(d_kernel, kernel_.m_data.data(), kernelSize*kernelSize*sizeof(float), cudaMemcpyHostToDevice)); + CUDA_CHECK(cudaMemcpy(d_in, in_.data().data(), N*sizeof(float), cudaMemcpyHostToDevice)); + + in.data = d_in; + out.data = d_out; + + dim3 threads(16, 16, 1); + dim3 blocks( + (in_.width() + threads.x - 1)/threads.x, + (in_.height() + threads.y - 1)/threads.y, + std::max(1, framesSize * layersSize) + ); + + convolve2D_CUDA_kernel<<>>(in, out, d_frames, framesSize, d_layers, + layersSize, d_kernel, kernelSize, strength, filterAlpha); + CUDA_CHECK(cudaGetLastError()); + CUDA_CHECK(cudaDeviceSynchronize()); + + CUDA_CHECK(cudaMemcpy(out_tmp.data().data(), out.data, N*sizeof(float), cudaMemcpyDeviceToHost)); + + out_ = std::move(out_tmp); - convolve2D_CUDA_kernel<<<>>> + cudaFree(d_in); + cudaFree(d_out); + cudaFree(d_kernel); + cudaFree(d_frames); + cudaFree(d_layers); } } // namespace dmxdenoiser diff --git a/src/filters/ConvolutionFilter copy.cpp b/src/filters/ConvolutionFilter copy.cpp deleted file mode 100644 index a5771c7..0000000 --- a/src/filters/ConvolutionFilter copy.cpp +++ /dev/null @@ -1,224 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -namespace dmxdenoiser -{ - - void ConvolutionFilter::setParams(const ParamDictionary& params) - { - resetParams(); - - std::string paramsInfo{}; - - if (auto v = params.getSingleParam("strength")) { - m_strength = *v; - paramsInfo += " strength (set) = " + std::to_string(m_strength) + "\n"; - } - else - { - paramsInfo += " strength (default) = " + std::to_string(m_strength) + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'strength' parameter not set, using default: ", m_strength); - } - - if (auto v = params.getArrayParam("frames")) - { - m_frames = *v; - paramsInfo += " frames (set) = " + joinVector(m_frames, ", ", "[","]", "all") + "\n"; - } - else - { - paramsInfo += " frames (default) = " + joinVector(m_frames, ", ", "[","]", "all") + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'frames' parameter not set, using 'default' value: ", - joinVector(m_frames, ", ", "[","]", "all")); - } - - if (auto v = params.getArrayParam("layers")) - { - m_layers = *v; - paramsInfo += " layers (set) = " + joinVector(m_layers, ", ", "[","]", "all") + "\n"; - } - else - { - paramsInfo += " layers (default) = " + joinVector(m_layers, ", ", "[","]", "all") + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", - "setParams(): 'layers' parameter not set, using default: ", joinVector(m_layers, ", ", "[","]", "all")); - } - - if (auto v = params.getSingleParam("filterAlpha")) - { - m_filterAlpha = *v; - paramsInfo += " filterAlpha (set) = " + std::string(m_filterAlpha ? "true" : "false") + "\n"; - } - else - { - paramsInfo += " filterAlpha (default) = " + std::string(m_filterAlpha ? "true" : "false") + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", - "setParams(): 'filterAlpha' parameter not set, using default: ", m_filterAlpha); - } - - if (auto v = params.getSingleParam("backend")) - { - m_backend = *v; - paramsInfo += " backend (set) = " + dmxdenoiser::ToString(m_backend) + "\n"; - } - else - { - paramsInfo += " backend (default) = " + dmxdenoiser::ToString(m_backend) + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", - "setParams(): 'backend' parameter not set, using default: ", dmxdenoiser::ToString(m_backend)); - } - - if (auto v = params.getSingleParam("backendResource")) - { - m_backendResource = *v; - paramsInfo += " backendResource (set) = \n" + m_backendResource.ToString(10) + "\n"; - } - else - { - paramsInfo += " backendResource (default) = \n" + m_backendResource.ToString(10) + "\n"; - DMX_LOG_TRACE("ConvolutionFilter", "setParams(): 'backendResource' parameter not set, using default: \n", m_backendResource.ToString(10)); - } - - if (auto v = params.getSingleParam("kernel")) { - m_kernel.set(*v); - paramsInfo += " kernel (set) = " + m_kernel.ToString() + "\n"; - } - else - { - DMX_LOG_ERROR("ConvolutionFilter", "setParams(): Missing required parameter 'kernel'"); - throw std::runtime_error("ConvolutionFilter::setParams(): Missing required parameter 'kernel'"); - } - DMX_LOG_INFO("ConvolutionFilter", "Setup filter settings:\nParameters:\n", paramsInfo); - }; - - void ConvolutionFilter::convolveCPU(const DMXImage& input, DMXImage& output) const - { - ThreadPool* pool = m_backendResource.threadPool; - if(!pool) - DMX_LOG_WARNING("ConvolutionFilter", "convolveCPU(): no ThreadPool available; running single-threaded"); - - int width = input.width(); - int height = input.height(); - int ksize = m_kernel.size(); - int offset = ksize/2; - - std::vector framesIndices; - // If no specific frames were set, process all frames by default. - if (m_frames.empty()) - { - for (int i = 0; i < input.numFrames(); ++i) // Add all frames - framesIndices.push_back(i); - } else { - for (int i = 0; i < m_frames.size(); ++i) - { - int requestedFrame = m_frames[i]; - if(requestedFrame < input.numFrames()) - framesIndices.push_back(requestedFrame); - else - DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested frame ", - requestedFrame, " not found; skipping"); - } - } - - std::vector layerIndices; - // If no specific layers were set, process by default. - if (m_layers.empty()) { - layerIndices = input.getFilteringLayersIndices(); - } else { - for (const auto& layer : m_layers) - { - if (input.hasLayer(layer)) - layerIndices.push_back(input.getLayerIndex(layer)); - else - DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested layer '", layer, "' not found; skipping"); - } - } - - for(int frameIdx = 0; frameIdx < framesIndices.size(); ++frameIdx) - { - int frame = framesIndices[frameIdx]; - for(int layerIdx = 0; layerIdx < layerIndices.size(); ++layerIdx) - { - int layer = layerIndices[layerIdx]; - parallelFor(0, to_i64(height), [&](std::int64_t y) { - for(std::int64_t x = 0; x < to_i64(width); ++x) - { - PixelRGBA orig = input.get(to_int(x), to_int(y), frame, layer); - PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; - for(int ky = -offset; ky <= offset; ++ky) - for(int kx = -offset; kx <= offset; ++kx) - { - int px = std::clamp(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); - sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); - } - sum = blendPixels(orig, sum, m_strength, m_filterAlpha); - output.at(to_int(x), to_int(y), frame, layer) = sum; - } - }, pool); - } - } - } - - void ConvolutionFilter::convolveGPU(const DMXImage& input, DMXImage& output) const - { - #if DMX_ENABLE_CUDA - // GPU logic - #else - DMX_LOG_ERROR("ConvolutionFilter", "convolveGPU(): no CUDA build"); - throw std::runtime_error("convolveGPU(): no CUDA build"); - #endif - } - - void ConvolutionFilter::convolveMETAL(const DMXImage& input, DMXImage& output) const - { - //#if DMX_ENABLE_METAL - // // METAL logic - //#else - DMX_LOG_ERROR("ConvolutionFilter", "convolveMETAL(): no METAL build"); - throw std::runtime_error("convolveMETAL(): no METAL build"); - //#endif - } - - void ConvolutionFilter::applyFilter(const DMXImage& in, DMXImage& out) const - { - if (m_kernel.size() == 0) { - DMX_LOG_ERROR("ConvolutionFilter", "applyFilter(): Kernel is empty, size=0x0"); - throw std::runtime_error("ConvolutionFilter::applyFilter(): Kernel is empty, size=0x0"); - } - - if (m_backend == Backend::CPU) { - this->convolveCPU(in, out); - } else if (m_backend == Backend::GPU) { - this->convolveGPU(in, out); - } else if (m_backend == Backend::METAL) { - this->convolveMETAL(in, out); - } - }; - - std::string ConvolutionFilter::ToString() const - { - // IN PROGRESS - return "ConvolutionFilter: \n" + m_kernel.ToString(4); - }; - - REGISTER_FILTER(ConvolutionFilter) - -} // namespace dmxdenoiser - - diff --git a/src/filters/ConvolutionFilter.cpp b/src/filters/ConvolutionFilter.cpp index 7b26861..2d87420 100644 --- a/src/filters/ConvolutionFilter.cpp +++ b/src/filters/ConvolutionFilter.cpp @@ -3,14 +3,12 @@ #include #include #include +#include #include #include #include #include -#if DMX_ENABLE_CUDA - #include -#endif #include #include @@ -165,12 +163,14 @@ namespace dmxdenoiser PixelRGBA orig = input.get(to_int(x), to_int(y), frame, layer); PixelRGBA sum = {0.0f, 0.0f, 0.0f, 0.0f}; for(int ky = -offset; ky <= offset; ++ky) + { + int py = std::clamp(to_int(y) + ky, 0, height - 1); for(int kx = -offset; kx <= offset; ++kx) { int px = std::clamp(to_int(x) + kx, 0, width - 1); - int py = std::clamp(to_int(y) + ky, 0, height - 1); sum += m_kernel(ky + offset, kx + offset) * input.get(px, py, frame, layer); } + } sum = blendPixels(orig, sum, m_strength, m_filterAlpha); output.at(to_int(x), to_int(y), frame, layer) = sum; } @@ -182,14 +182,9 @@ namespace dmxdenoiser void ConvolutionFilter::convolveGPU(const DMXImage& input, DMXImage& output) const { #if DMX_ENABLE_CUDA - ThreadPool* pool = m_backendResource.threadPool; - if(!pool) - DMX_LOG_WARNING("ConvolutionFilter", "convolveCPU(): no ThreadPool available; running single-threaded"); - int width = input.width(); int height = input.height(); int ksize = m_kernel.size(); - int offset = ksize/2; std::vector framesIndices; // If no specific frames were set, process all frames by default. @@ -222,6 +217,9 @@ namespace dmxdenoiser DMX_LOG_WARNING("ConvolutionFilter", "setParams(): requested layer '", layer, "' not found; skipping"); } } + + convolve2D_CUDA(input, output, framesIndices, layerIndices, m_kernel, m_strength, m_filterAlpha); + #else DMX_LOG_ERROR("ConvolutionFilter", "convolveGPU(): no CUDA build"); throw std::runtime_error("convolveGPU(): no CUDA build"); diff --git a/tests/ConvolutionFilter_test.cpp b/tests/ConvolutionFilter_test.cpp index 788756d..dfa6306 100644 --- a/tests/ConvolutionFilter_test.cpp +++ b/tests/ConvolutionFilter_test.cpp @@ -280,3 +280,22 @@ TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToTheImageParallelSingleT auto gaussianKernel = FilterKernels::getGaussianKernel(3, sigma); applyFilterToImageFile(filename, outputFileName, gaussianKernel); } + +TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToPalmImageKernel7x7CPU) +{ + ThreadPool threadPool(0); + std::string filename = "../examples/palm_pixel_art.exr"; + std::string outputFileName = "../tests/test_files/palm_pixel_art_cpu_convo_gaussan_sigma2_17x17.exr"; + float sigma = 100.0f; + auto gaussianKernel = FilterKernels::getGaussianKernel(17, sigma); + applyFilterToImageFile(filename, outputFileName, gaussianKernel, &threadPool, Backend::CPU); +} + +TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToPalmImageKernel17x17GPU) +{ + std::string filename = "../examples/palm_pixel_art.exr"; + std::string outputFileName = "../tests/test_files/palm_pixel_art_gpu_convo_gaussan_sigma2_17x17.exr"; + float sigma = 100.0f; + auto gaussianKernel = FilterKernels::getGaussianKernel(17, sigma); + applyFilterToImageFile(filename, outputFileName, gaussianKernel, nullptr, Backend::GPU); +} From cb5b5a429b335917156c2709b5a6558ba2893a92 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 9 Nov 2025 20:54:07 +0000 Subject: [PATCH 2579/2596] refactor ci --- .gitignore | 6 +-- CMakeLists.txt | 70 +++++++++---------------- CMakePresets.json | 88 +++++++++++++++++++++++++++++--- cli/main.cpp | 6 +++ config.json | 2 - include/dmxdenoiser/Config.hpp | 1 + include/dmxdenoiser/Logger.hpp | 40 +++++++-------- src/filters/ConvolutionCUDA.cu | 4 +- tests/BuildInfo_test.cpp | 2 +- tests/ConvolutionFilter_test.cpp | 21 ++++---- tools/build.py | 16 ++++++ 11 files changed, 163 insertions(+), 93 deletions(-) create mode 100644 tools/build.py diff --git a/.gitignore b/.gitignore index c070d4c..9e28e26 100644 --- a/.gitignore +++ b/.gitignore @@ -2,18 +2,14 @@ Thumbs.db /_deps/ /CMakeFiles/ -/build/ -/build-debug/ -/build-release/ +/build* /Testing/ *.dSYM /.vscode/ /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ -/build-win-cuda/ ->>>>>>> 790a629 (Update) tests/test_files/ CTestTestfile.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 022f400..69f68b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,17 @@ cmake_minimum_required(VERSION 3.26) -project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX CUDA) +project(DenoiseMachineX VERSION 0.1.0 LANGUAGES CXX) -option(BUILD_CUDA "Build CUDA backends" ON) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_CUDA "Build CUDA backends" ON) +option(BUILD_TESTING "Build tests" ON) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) +# Log level by Default 0 = TRACE +set(DMX_MIN_LOG_LEVEL "0" CACHE STRING "Compile-time minimum log level") +add_compile_definitions(DMX_MIN_LOG_LEVEL=${DMX_MIN_LOG_LEVEL}) + # Output dirs set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) @@ -15,19 +19,6 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) include(FetchContent) -# ---- Imath & OpenEXR (v3) -#FetchContent_Declare(Imath -# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git -# GIT_TAG v3.1.10 -#) -#FetchContent_MakeAvailable(Imath) -# -#FetchContent_Declare(OpenEXR -# GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git -# GIT_TAG v3.2.4 -#) -#FetchContent_MakeAvailable(OpenEXR) - # ---- Dependencies from vcpkg find_package(Imath CONFIG REQUIRED) # provides Imath::Imath find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR @@ -48,36 +39,35 @@ else() endif() # ---- Executable -add_executable(dmxdenoiser ${SRC_CPP} ${SRC_CU} ${CLI_MAIN}) +add_library(dmxcore ${SRC_CPP} ${SRC_CU}) # Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) -target_include_directories(dmxdenoiser - BEFORE PUBLIC +target_include_directories(dmxcore + PUBLIC $ $ - $ # parent of Imath/ - $ - $ # parent of OpenEXR/ - $ ) -target_link_libraries(dmxdenoiser +target_link_libraries(dmxcore PUBLIC Imath::Imath OpenEXR::OpenEXR ) if(BUILD_CUDA) - target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=1) - target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(dmxdenoiser PROPERTIES + target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=1) + target_link_libraries(dmxcore PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(dmxcore PROPERTIES CUDA_SEPARABLE_COMPILATION ON CUDA_ARCHITECTURES native ) else() - target_compile_definitions(dmxdenoiser PUBLIC DMX_ENABLE_CUDA=0) + target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=0) endif() +add_executable(dmxdenoiser ${CLI_MAIN}) +target_link_libraries(dmxdenoiser PRIVATE dmxcore) + # Silence MSVC deprecation spam from OpenEXR threadpool atomics if(MSVC) add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) @@ -95,26 +85,12 @@ if(BUILD_TESTING) file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) foreach(test_src ${TEST_SOURCES}) get_filename_component(test_name ${test_src} NAME_WE) - add_executable(${test_name} ${SRC_CPP} ${SRC_CU} ${test_src}) - target_include_directories(${test_name} - BEFORE PRIVATE - ${CMAKE_SOURCE_DIR}/include - ${imath_SOURCE_DIR}/src - ${imath_BINARY_DIR}/config - ${openexr_SOURCE_DIR}/src/lib - ${openexr_BINARY_DIR}/config + add_executable(${test_name} ${test_src}) + target_link_libraries(${test_name} + PRIVATE + gtest_main + dmxcore # <- reuse your main library/exe as a link target ) - target_link_libraries(${test_name} PRIVATE gtest_main Imath::Imath OpenEXR::OpenEXR) - if(BUILD_CUDA) - target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=1) - target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(${test_name} PROPERTIES - CUDA_SEPARABLE_COMPILATION ON - CUDA_ARCHITECTURES native - ) - else() - target_compile_definitions(${test_name} PUBLIC DMX_ENABLE_CUDA=0) - endif() if(MSVC) target_compile_definitions(${test_name} PUBLIC _SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) diff --git a/CMakePresets.json b/CMakePresets.json index 1bdd8d1..2e04f6e 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -5,15 +5,29 @@ "minor": 23 }, "configurePresets": [ + { + "name": "mac-cpu-dev", + "displayName": "macOS CPU Dev", + "generator": "", + "binaryDir": "build-mac-dev", + "cacheVariables": { + "CMAKE_TOOLCHAIN_FILE": "$PWD/vcpkg/scripts/buildsystems/vcpkg.cmake", + "CMAKE_BUILD_TYPE": "Debug", + "BUILD_CUDA": "OFF", + "BUILD_TESTING": "ON", + "DMX_MIN_LOG_LEVEL": "0" + } + }, { "name": "mac-cpu-debug", "displayName": "macOS CPU Debug", - "generator": "Ninja", + "generator": "", "binaryDir": "build-mac-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "BUILD_CUDA": "OFF", - "BUILD_TESTING": "ON" + "BUILD_TESTING": "ON", + "DMX_MIN_LOG_LEVEL": "1" } }, { @@ -28,14 +42,46 @@ } }, { - "name": "windows-cuda", + "name": "windows-cuda-dev", + "displayName": "Windows CUDA Dev", + "generator": "Ninja Multi-Config", + "binaryDir": "${sourceDir}/build-win-cuda-dev", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "BUILD_TESTING": "ON", + "BUILD_CUDA": "ON", + "DMX_MIN_LOG_LEVEL": "0", + "CMAKE_C_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CUDA_COMPILER": "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe", + "CMAKE_CUDA_ARCHITECTURES": "native" + } + }, + { + "name": "windows-cuda-debug", "displayName": "Windows CUDA Debug", "generator": "Ninja Multi-Config", - "binaryDir": "${sourceDir}/build-win-cuda", + "binaryDir": "${sourceDir}/build-win-cuda-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "BUILD_TESTING": "ON", "BUILD_CUDA": "ON", + "DMX_MIN_LOG_LEVEL": "1", + "CMAKE_C_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", + "CMAKE_CUDA_COMPILER": "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe", + "CMAKE_CUDA_ARCHITECTURES": "native" + } + }, + { + "name": "windows-cuda-release", + "displayName": "Windows CUDA Release", + "generator": "Ninja Multi-Config", + "binaryDir": "${sourceDir}/build-win-cuda-release", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Release", + "BUILD_TESTING": "ON", + "BUILD_CUDA": "ON", "CMAKE_C_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", "CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe", "CMAKE_CUDA_COMPILER": "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe", @@ -44,13 +90,41 @@ } ], "buildPresets": [ + { "name": "mac-cpu-dev", "configurePreset": "mac-cpu-dev" }, { "name": "mac-cpu-debug", "configurePreset": "mac-cpu-debug" }, { "name": "linux-cuda-release", "configurePreset": "linux-cuda-release" }, - { "name": "windows-cuda-debug", "configurePreset": "windows-cuda", "configuration": "Debug" } + { "name": "windows-cuda-debug", "configurePreset": "windows-cuda-debug" }, + { "name": "windows-cuda-release", "configurePreset": "windows-cuda-release" } ], "testPresets": [ - { "name": "mac-cpu-debug", "configurePreset": "mac-cpu-debug" }, + { + "name": "mac-cpu-dev", + "displayName": "Mac CPU Dev Tests", + "configurePreset": "mac-cpu-dev", + "output": + { + "outputOnFailure": true, + "verbosity": "verbose" + }, + "execution": { + "jobs": 16 + } + }, + { + "name": "mac-cpu-debug", + "displayName": "Mac CPU Debug Tests", + "configurePreset": "mac-cpu-debug", + "output": + { + "outputOnFailure": true, + "verbosity": "verbose" + }, + "execution": { + "jobs": 16 + } + }, { "name": "linux-cuda-release", "configurePreset": "linux-cuda-release" }, - { "name": "windows-cuda_debug-ctest", "configurePreset": "windows-cuda", "configuration": "Debug" } + { "name": "windows-cuda-debug", "configurePreset": "windows-cuda-debug" }, + { "name": "windows-cuda-release", "configurePreset": "windows-cuda-release" } ] } diff --git a/cli/main.cpp b/cli/main.cpp index 1c56143..bf72705 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -1,11 +1,17 @@ #include +#include #include +using namespace dmxdenoiser; + int main(int argc, char** argv) { std::cout << "DMX Denoiser run.\nArgs: "; + for(int i = 0; i < argc; ++i) std::cout << argv[i] << ' '; + + DMX_LOG_INIT(DMX_MIN_LOG_LEVEL, &std::clog, "./dmxdenoiser.log"); return 0; } diff --git a/config.json b/config.json index 274a0d8..70c471f 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,4 @@ { - "gpu": 0, "input_mapping": { "beauty": "default", @@ -20,5 +19,4 @@ "level": "debug", "outputFolder": "log" } - } diff --git a/include/dmxdenoiser/Config.hpp b/include/dmxdenoiser/Config.hpp index f49ff78..fc93e29 100644 --- a/include/dmxdenoiser/Config.hpp +++ b/include/dmxdenoiser/Config.hpp @@ -30,3 +30,4 @@ namespace dmxdenoiser { #define DMX_INLINE inline __attribute__((always_inline)) #endif #endif + diff --git a/include/dmxdenoiser/Logger.hpp b/include/dmxdenoiser/Logger.hpp index ac9a910..84d6229 100644 --- a/include/dmxdenoiser/Logger.hpp +++ b/include/dmxdenoiser/Logger.hpp @@ -15,10 +15,21 @@ #include #include +#ifndef DMX_MIN_LOG_LEVEL +#define DMX_MIN_LOG_LEVEL 0 +#endif + namespace dmxdenoiser { - enum class LogLevel { Trace, Debug, Info, Warning, Error, Critical}; + enum class LogLevel { + Trace, + Debug, + Info, + Warning, + Error, + Critical + }; inline constexpr std::string_view ToString(LogLevel level) { switch (level) { @@ -55,10 +66,10 @@ namespace dmxdenoiser return std::string(buf); } - void init(LogLevel minLevel, std::ostream* os = nullptr, const std::string& filePath = "") { + void init(int minLevel, std::ostream* os = nullptr, const std::string& filePath = "") { std::lock_guard lock{m_mutex}; m_initialized = true; - m_minLevel = static_cast(minLevel); + m_minLevel = minLevel; m_filePath = filePath; m_out = os; if (m_fileStream.is_open()) // close old file if any @@ -93,6 +104,10 @@ namespace dmxdenoiser } } + void init(LogLevel minLevel, std::ostream* os = nullptr, const std::string& filePath = "") { + init(static_cast(minLevel), os, filePath); + } + void shutdown() { std::lock_guard lock{m_mutex}; if (m_fileStream.is_open()) @@ -109,18 +124,7 @@ namespace dmxdenoiser void Log(LogLevel level, std::string_view tag, Args&&... args) { if (static_cast(level) < m_minLevel) return; - /* - auto now = std::chrono::system_clock::now(); - auto t = std::chrono::system_clock::to_time_t(now); - std::tm tm{}; - #if defined(_WIN32) - localtime_s(&tm, &t); - #else - localtime_r(&t, &tm); - #endif - char buf[24]; - std::strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", &tm); - */ + std::string localTime_{this->localTime()}; // Build message text once (handles empty varargs too), with neat spacing @@ -171,14 +175,10 @@ namespace dmxdenoiser #if DMX_DEBUG_BUILD #define DMX_LOG_TRACE(tag, ...) dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Trace, (tag), ##__VA_ARGS__) -#else - #define DMX_LOG_TRACE(tag, ...) ((void)0) -#endif - -#if DMX_DEBUG_BUILD #define DMX_LOG_DEBUG(tag, ...) dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Debug, (tag), ##__VA_ARGS__) #else #define DMX_LOG_DEBUG(tag, ...) ((void)0) + #define DMX_LOG_TRACE(tag, ...) ((void)0) #endif #define DMX_LOG_INFO(tag, ...) dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Info, (tag), ##__VA_ARGS__) diff --git a/src/filters/ConvolutionCUDA.cu b/src/filters/ConvolutionCUDA.cu index 5e3d19f..4fcf33f 100644 --- a/src/filters/ConvolutionCUDA.cu +++ b/src/filters/ConvolutionCUDA.cu @@ -10,7 +10,7 @@ #include #define CUDA_CHECK(x) do { cudaError_t _e = (x); if (_e != cudaSuccess) \ - throw std::runtime_error(std::string("CUDA error: ")+cudaGetErrorString(_e)); } while(0) + throw std::runtime_error(std::string("CUDA error: ")+cudaGetErrorString(_e)); } while(0) namespace dmxdenoiser { @@ -102,7 +102,7 @@ namespace dmxdenoiser (in_.width() + threads.x - 1)/threads.x, (in_.height() + threads.y - 1)/threads.y, std::max(1, framesSize * layersSize) - ); + ); convolve2D_CUDA_kernel<<>>(in, out, d_frames, framesSize, d_layers, layersSize, d_kernel, kernelSize, strength, filterAlpha); diff --git a/tests/BuildInfo_test.cpp b/tests/BuildInfo_test.cpp index 8e97994..708cb74 100644 --- a/tests/BuildInfo_test.cpp +++ b/tests/BuildInfo_test.cpp @@ -19,7 +19,7 @@ class BuildInfoTest : public ::testing::Test { void SetUp() override { removeLogFile(); - DMX_LOG_INIT(LogLevel::Trace, &std::clog, this->getLogPath()); + DMX_LOG_INIT(DMX_MIN_LOG_LEVEL, &std::clog, this->getLogPath()); } void TearDown() override { diff --git a/tests/ConvolutionFilter_test.cpp b/tests/ConvolutionFilter_test.cpp index dfa6306..88c6b52 100644 --- a/tests/ConvolutionFilter_test.cpp +++ b/tests/ConvolutionFilter_test.cpp @@ -30,7 +30,8 @@ class ConvolutionFilterTest : public ::testing::Test { void SetUp() override { removeLogFile(); - DMX_LOG_INIT(LogLevel::Trace, &std::clog, this->getLogPath()); + DMX_LOG_INIT(DMX_MIN_LOG_LEVEL, &std::clog, this->getLogPath()); + std::cout << "DMX_MIN_LOG_LEVEL: " << DMX_MIN_LOG_LEVEL << '\n'; } void TearDown() override { @@ -291,11 +292,13 @@ TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToPalmImageKernel7x7CPU) applyFilterToImageFile(filename, outputFileName, gaussianKernel, &threadPool, Backend::CPU); } -TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToPalmImageKernel17x17GPU) -{ - std::string filename = "../examples/palm_pixel_art.exr"; - std::string outputFileName = "../tests/test_files/palm_pixel_art_gpu_convo_gaussan_sigma2_17x17.exr"; - float sigma = 100.0f; - auto gaussianKernel = FilterKernels::getGaussianKernel(17, sigma); - applyFilterToImageFile(filename, outputFileName, gaussianKernel, nullptr, Backend::GPU); -} +#if DMX_ENABLE_CUDA + TEST_F(ConvolutionFilterTest, ApplyGaussianFilterKernelToPalmImageKernel17x17GPU) + { + std::string filename = "../examples/palm_pixel_art.exr"; + std::string outputFileName = "../tests/test_files/palm_pixel_art_gpu_convo_gaussan_sigma2_17x17.exr"; + float sigma = 100.0f; + auto gaussianKernel = FilterKernels::getGaussianKernel(17, sigma); + applyFilterToImageFile(filename, outputFileName, gaussianKernel, nullptr, Backend::GPU); + } +#endif diff --git a/tools/build.py b/tools/build.py new file mode 100644 index 0000000..8d09656 --- /dev/null +++ b/tools/build.py @@ -0,0 +1,16 @@ +import argparse + +def build_parser(): + parser = argparse.ArgumentParser( + description="Universal project builder CLI" + ) + + parser.add_argument("--preset") + return parser + +def main(): + parser = build_parser() + +if __name__ == "__main__": + main() + From 46ddbf0efe97c1c98999982bd09d2a9d46ca4884 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 9 Nov 2025 21:00:07 +0000 Subject: [PATCH 2580/2596] refactor dependencies fetching --- CMakeLists.txt | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 69f68b0..e2a4469 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,10 +19,27 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) include(FetchContent) -# ---- Dependencies from vcpkg -find_package(Imath CONFIG REQUIRED) # provides Imath::Imath -find_package(OpenEXR CONFIG REQUIRED) # provides OpenEXR::OpenEXR -# find_package(ZLIB REQUIRED) # usually not needed explicitly +option(DMX_FETCH_DEPS "Allow CMake to auto-fetch Imath/OpenEXR if missing" ON) + +# Try config-based first (Homebrew/system/etc.) +find_package(Imath CONFIG QUIET) +find_package(OpenEXR CONFIG QUIET) + +if(DMX_FETCH_DEPS AND (NOT Imath_FOUND OR NOT OpenEXR_FOUND)) + message(STATUS "Imath/OpenEXR not found, fetching via FetchContent...") + + FetchContent_Declare(Imath + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git + GIT_TAG v3.1.10 + ) + FetchContent_MakeAvailable(Imath) + + FetchContent_Declare(OpenEXR + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git + GIT_TAG v3.2.4 + ) + FetchContent_MakeAvailable(OpenEXR) +endif() # ---- Sources file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) From 4dc2ef408ef16efc7af8085b742ce44c1bcd27cd Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 00:05:15 +0300 Subject: [PATCH 2581/2596] update git ignore --- .gitignore | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index c070d4c..1a3284f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,21 +2,16 @@ Thumbs.db /_deps/ /CMakeFiles/ -/build/ -/build-debug/ -/build-release/ +/build* /Testing/ *.dSYM /.vscode/ /.VSCodeCounter/ /vcpkg/ /vcpkg_installed/ -/build-win-cuda/ ->>>>>>> 790a629 (Update) tests/test_files/ CTestTestfile.cmake Makefile -cmake_install.cmake - +cmake_install.cmake \ No newline at end of file From 3a92fd1db1beeec6be4158ab782e0d467587add0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 9 Nov 2025 21:47:29 +0000 Subject: [PATCH 2582/2596] update --- CMakeLists.txt | 36 +++++++++++++++--------------------- CMakePresets.json | 1 - 2 files changed, 15 insertions(+), 22 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2a4469..58b7121 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,27 +19,16 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) include(FetchContent) -option(DMX_FETCH_DEPS "Allow CMake to auto-fetch Imath/OpenEXR if missing" ON) - -# Try config-based first (Homebrew/system/etc.) -find_package(Imath CONFIG QUIET) -find_package(OpenEXR CONFIG QUIET) - -if(DMX_FETCH_DEPS AND (NOT Imath_FOUND OR NOT OpenEXR_FOUND)) - message(STATUS "Imath/OpenEXR not found, fetching via FetchContent...") - - FetchContent_Declare(Imath - GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git - GIT_TAG v3.1.10 - ) - FetchContent_MakeAvailable(Imath) - - FetchContent_Declare(OpenEXR - GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git - GIT_TAG v3.2.4 - ) - FetchContent_MakeAvailable(OpenEXR) -endif() +FetchContent_Declare(Imath + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/Imath.git + GIT_TAG v3.1.10 +) +FetchContent_MakeAvailable(Imath) +FetchContent_Declare(OpenEXR + GIT_REPOSITORY https://github.com/AcademySoftwareFoundation/openexr.git + GIT_TAG v3.2.4 +) +FetchContent_MakeAvailable(OpenEXR) # ---- Sources file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) @@ -63,6 +52,11 @@ target_include_directories(dmxcore PUBLIC $ $ + # Imath / OpenEXR headers from FetchContent + $ + $ + $ + $ ) target_link_libraries(dmxcore diff --git a/CMakePresets.json b/CMakePresets.json index 2e04f6e..97467ca 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -11,7 +11,6 @@ "generator": "", "binaryDir": "build-mac-dev", "cacheVariables": { - "CMAKE_TOOLCHAIN_FILE": "$PWD/vcpkg/scripts/buildsystems/vcpkg.cmake", "CMAKE_BUILD_TYPE": "Debug", "BUILD_CUDA": "OFF", "BUILD_TESTING": "ON", From 67a7faaa67c0c31b469b438d192961aecb6405b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 9 Nov 2025 22:42:47 +0000 Subject: [PATCH 2583/2596] update compiller --- CMakeLists.txt | 2 +- CMakePresets.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 58b7121..b8acffe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,7 +100,7 @@ if(BUILD_TESTING) target_link_libraries(${test_name} PRIVATE gtest_main - dmxcore # <- reuse your main library/exe as a link target + dmxcore ) if(MSVC) target_compile_definitions(${test_name} diff --git a/CMakePresets.json b/CMakePresets.json index 97467ca..b3590fe 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -37,7 +37,10 @@ "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "BUILD_CUDA": "ON", - "BUILD_TESTING": "ON" + "BUILD_TESTING": "ON", + "CMAKE_C_COMPILER": "gcc-11", + "CMAKE_CXX_COMPILER": "g++-11", + "CMAKE_CUDA_HOST_COMPILER": "g++-11" } }, { From 82f57dd0ef58713864ce1c82ba773dbbf101d03a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Sun, 9 Nov 2025 23:05:44 +0000 Subject: [PATCH 2584/2596] update compiler --- CMakePresets.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index b3590fe..b2536ea 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -38,9 +38,9 @@ "CMAKE_BUILD_TYPE": "Release", "BUILD_CUDA": "ON", "BUILD_TESTING": "ON", - "CMAKE_C_COMPILER": "gcc-11", - "CMAKE_CXX_COMPILER": "g++-11", - "CMAKE_CUDA_HOST_COMPILER": "g++-11" + "CMAKE_C_COMPILER": "/usr/bin/gcc-11", + "CMAKE_CXX_COMPILER": "/usr/bin/g++-11", + "CMAKE_CUDA_HOST_COMPILER": "/usr/bin/g++-11" } }, { From 8df86b0f77246feea15b11a2c920fb43379610f6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 03:27:05 +0300 Subject: [PATCH 2585/2596] update gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1a3284f..5e3c449 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ tests/test_files/ CTestTestfile.cmake Makefile -cmake_install.cmake \ No newline at end of file +cmake_install.cmake +cuda-keyring_1.1-1_all.deb From d517aeb2784d19c95c5466b89b2fdb31db775027 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 00:35:21 +0000 Subject: [PATCH 2586/2596] update --- CMakePresets.json | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index b2536ea..ad3b1f7 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -30,21 +30,29 @@ } }, { - "name": "linux-cuda-release", + "name": "linux-cpu-release", "displayName": "Linux CUDA Release", "generator": "Ninja", "binaryDir": "build-linux-cuda", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "BUILD_CUDA": "ON", - "BUILD_TESTING": "ON", - "CMAKE_C_COMPILER": "/usr/bin/gcc-11", - "CMAKE_CXX_COMPILER": "/usr/bin/g++-11", - "CMAKE_CUDA_HOST_COMPILER": "/usr/bin/g++-11" + "BUILD_TESTING": "ON" + } + }, + { + "name": "linux-gpu-release", + "displayName": "Linux CUDA Release", + "generator": "Ninja", + "binaryDir": "build-linux-cuda", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Release", + "BUILD_CUDA": "ON", + "BUILD_TESTING": "ON" } }, { - "name": "windows-cuda-dev", + "name": "windows-gpu-dev", "displayName": "Windows CUDA Dev", "generator": "Ninja Multi-Config", "binaryDir": "${sourceDir}/build-win-cuda-dev", @@ -60,7 +68,7 @@ } }, { - "name": "windows-cuda-debug", + "name": "windows-gpu-debug", "displayName": "Windows CUDA Debug", "generator": "Ninja Multi-Config", "binaryDir": "${sourceDir}/build-win-cuda-debug", @@ -76,7 +84,7 @@ } }, { - "name": "windows-cuda-release", + "name": "windows-gpu-release", "displayName": "Windows CUDA Release", "generator": "Ninja Multi-Config", "binaryDir": "${sourceDir}/build-win-cuda-release", @@ -94,9 +102,9 @@ "buildPresets": [ { "name": "mac-cpu-dev", "configurePreset": "mac-cpu-dev" }, { "name": "mac-cpu-debug", "configurePreset": "mac-cpu-debug" }, - { "name": "linux-cuda-release", "configurePreset": "linux-cuda-release" }, - { "name": "windows-cuda-debug", "configurePreset": "windows-cuda-debug" }, - { "name": "windows-cuda-release", "configurePreset": "windows-cuda-release" } + { "name": "linux-gpu-release", "configurePreset": "linux-gpu-release" }, + { "name": "windows-gpu-debug", "configurePreset": "windows-gpu-debug" }, + { "name": "windows-gpu-release", "configurePreset": "windows-gpu-release" } ], "testPresets": [ { @@ -125,8 +133,8 @@ "jobs": 16 } }, - { "name": "linux-cuda-release", "configurePreset": "linux-cuda-release" }, - { "name": "windows-cuda-debug", "configurePreset": "windows-cuda-debug" }, - { "name": "windows-cuda-release", "configurePreset": "windows-cuda-release" } + { "name": "linux-gpu-release", "configurePreset": "linux-gpu-release" }, + { "name": "windows-gpu-debug", "configurePreset": "windows-gpu-debug" }, + { "name": "windows-gpu-release", "configurePreset": "windows-gpu-release" } ] } From 17be1e34391518b79c4432cebedb8a8bbfbe49e4 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 06:20:08 +0300 Subject: [PATCH 2587/2596] refactor cmake --- CMakeLists.txt | 8 ++++- CMakePresets.json | 53 +++++++++++++++++++++++++++--- include/dmxdenoiser/Logger.hpp | 8 +++-- include/dmxdenoiser/ThreadPool.hpp | 4 +-- src/filters/ConvolutionFilter.cpp | 2 +- tests/AssertLogContains.hpp | 52 +++++++++++++++-------------- tests/ConvolutionFilter_test.cpp | 1 - 7 files changed, 91 insertions(+), 37 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b8acffe..dd28990 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,12 +65,18 @@ target_link_libraries(dmxcore OpenEXR::OpenEXR ) +if(DMX_CUDA_ENABLED) + if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES) + set(CMAKE_CUDA_ARCHITECTURES "75;86;87;89;90;120" CACHE STRING "CUDA architectures") + endif() +endif() + if(BUILD_CUDA) target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=1) target_link_libraries(dmxcore PRIVATE CUDA::cudart CUDA::cuda_driver) set_target_properties(dmxcore PROPERTIES CUDA_SEPARABLE_COMPILATION ON - CUDA_ARCHITECTURES native + CUDA_ARCHITECTURES "${CMAKE_CUDA_ARCHITECTURES}" ) else() target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=0) diff --git a/CMakePresets.json b/CMakePresets.json index ad3b1f7..74ae976 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -29,26 +29,53 @@ "DMX_MIN_LOG_LEVEL": "1" } }, + { + "name": "linux-cpu-debug", + "displayName": "Linux CPU Debug", + "generator": "Ninja", + "binaryDir": "build-linux-cpu-debug", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "BUILD_CUDA": "OFF", + "BUILD_TESTING": "ON", + "DMX_MIN_LOG_LEVEL": "1" + } + }, { "name": "linux-cpu-release", - "displayName": "Linux CUDA Release", + "displayName": "Linux CPU Release", "generator": "Ninja", - "binaryDir": "build-linux-cuda", + "binaryDir": "build-linux-cpu-release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", + "BUILD_CUDA": "OFF", + "BUILD_TESTING": "OFF" + } + }, + { + "name": "linux-gpu-debug", + "displayName": "Linux CUDA Debug", + "generator": "Ninja", + "binaryDir": "build-linux-gpu-debug", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", "BUILD_CUDA": "ON", - "BUILD_TESTING": "ON" + "BUILD_TESTING": "ON", + "CMAKE_CUDA_COMPILER": "nvcc", + "CMAKE_CUDA_ARCHITECTURES": "75;86" } }, { "name": "linux-gpu-release", "displayName": "Linux CUDA Release", "generator": "Ninja", - "binaryDir": "build-linux-cuda", + "binaryDir": "build-linux-gpu-release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "BUILD_CUDA": "ON", - "BUILD_TESTING": "ON" + "BUILD_TESTING": "OFF", + "CMAKE_CUDA_COMPILER": "nvcc", + "CMAKE_CUDA_ARCHITECTURES": "75;86" } }, { @@ -102,6 +129,9 @@ "buildPresets": [ { "name": "mac-cpu-dev", "configurePreset": "mac-cpu-dev" }, { "name": "mac-cpu-debug", "configurePreset": "mac-cpu-debug" }, + { "name": "linux-cpu-debug", "configurePreset": "linux-cpu-debug" }, + { "name": "linux-cpu-release", "configurePreset": "linux-cpu-release" }, + { "name": "linux-gpu-debug", "configurePreset": "linux-gpu-debug" }, { "name": "linux-gpu-release", "configurePreset": "linux-gpu-release" }, { "name": "windows-gpu-debug", "configurePreset": "windows-gpu-debug" }, { "name": "windows-gpu-release", "configurePreset": "windows-gpu-release" } @@ -133,6 +163,19 @@ "jobs": 16 } }, + { + "name": "linux-cpu-debug", + "displayName": "Linux CPU Debug Tests", + "configurePreset": "linux-cpu-debug", + "output": + { + "outputOnFailure": true, + "verbosity": "verbose" + }, + "execution": { + "jobs": 16 + } + }, { "name": "linux-gpu-release", "configurePreset": "linux-gpu-release" }, { "name": "windows-gpu-debug", "configurePreset": "windows-gpu-debug" }, { "name": "windows-gpu-release", "configurePreset": "windows-gpu-release" } diff --git a/include/dmxdenoiser/Logger.hpp b/include/dmxdenoiser/Logger.hpp index 84d6229..66bd2e3 100644 --- a/include/dmxdenoiser/Logger.hpp +++ b/include/dmxdenoiser/Logger.hpp @@ -169,14 +169,16 @@ namespace dmxdenoiser } // namespace dmxdenoiser // Initialize logger -#define DMX_LOG_INIT(LOGLEVEL, OSTREAMPTR, FILENAME) \ - dmxdenoiser::Logger::instance().init((LOGLEVEL), (OSTREAMPTR), (FILENAME)); \ - dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Debug, "Logger", "Logging system initialized") #if DMX_DEBUG_BUILD + #define DMX_LOG_INIT(LOGLEVEL, OSTREAMPTR, FILENAME) \ + dmxdenoiser::Logger::instance().init((LOGLEVEL), (OSTREAMPTR), (FILENAME)); \ + dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Debug, "Logger", "Logging system initialized") #define DMX_LOG_TRACE(tag, ...) dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Trace, (tag), ##__VA_ARGS__) #define DMX_LOG_DEBUG(tag, ...) dmxdenoiser::Logger::instance().Log(dmxdenoiser::LogLevel::Debug, (tag), ##__VA_ARGS__) #else + #define DMX_LOG_INIT(LOGLEVEL, OSTREAMPTR, FILENAME) \ + dmxdenoiser::Logger::instance().init((LOGLEVEL), (OSTREAMPTR), (FILENAME)) #define DMX_LOG_DEBUG(tag, ...) ((void)0) #define DMX_LOG_TRACE(tag, ...) ((void)0) #endif diff --git a/include/dmxdenoiser/ThreadPool.hpp b/include/dmxdenoiser/ThreadPool.hpp index 12dfda1..07e967c 100644 --- a/include/dmxdenoiser/ThreadPool.hpp +++ b/include/dmxdenoiser/ThreadPool.hpp @@ -84,7 +84,7 @@ namespace dmxdenoiser } ); } - DMX_LOG_INFO("ThreadPool", "ThreadPool ", this, " created with ", threads, " threads."); + DMX_LOG_DEBUG("ThreadPool", "ThreadPool ", this, " created with ", threads, " threads."); } template @@ -118,7 +118,7 @@ namespace dmxdenoiser for(std::thread& worker : m_workers) worker.join(); - DMX_LOG_INFO("ThreadPool", "ThreadPool ", this, " stopped."); + DMX_LOG_TRACE("ThreadPool", "ThreadPool ", this, " stopped."); } } // namespace dmxdenoiser diff --git a/src/filters/ConvolutionFilter.cpp b/src/filters/ConvolutionFilter.cpp index 2d87420..0127b3a 100644 --- a/src/filters/ConvolutionFilter.cpp +++ b/src/filters/ConvolutionFilter.cpp @@ -105,7 +105,7 @@ namespace dmxdenoiser DMX_LOG_ERROR("ConvolutionFilter", "setParams(): Missing required parameter 'kernel'"); throw std::runtime_error("ConvolutionFilter::setParams(): Missing required parameter 'kernel'"); } - DMX_LOG_INFO("ConvolutionFilter", "Setup filter settings:\nParameters:\n", paramsInfo); + DMX_LOG_DEBUG("ConvolutionFilter", "Setup filter settings:\nParameters:\n", paramsInfo); }; void ConvolutionFilter::convolveCPU(const DMXImage& input, DMXImage& output) const diff --git a/tests/AssertLogContains.hpp b/tests/AssertLogContains.hpp index e8adb4b..f8d826e 100644 --- a/tests/AssertLogContains.hpp +++ b/tests/AssertLogContains.hpp @@ -20,35 +20,39 @@ namespace dmxdenoiser template void assertLogContains(std::string_view logFilePath, Args&&... args) { - static_assert((is_string_type && ...), "All arguments must be std::string or const char*"); - - ASSERT_TRUE(std::filesystem::exists(logFilePath)); - ASSERT_GT(std::filesystem::file_size(logFilePath), 0u); - std::ifstream ifile{std::string(logFilePath)}; - ASSERT_TRUE(ifile.good()); - std::string logText{}; - std::string line{}; - while(std::getline(ifile, line)) - logText += line; - (([&](){ EXPECT_NE(logText.find(std::forward(args)), std::string::npos); }() ), ...); + #if DMX_DEBUG_BUILD + static_assert((is_string_type && ...), "All arguments must be std::string or const char*"); + + ASSERT_TRUE(std::filesystem::exists(logFilePath)); + ASSERT_GT(std::filesystem::file_size(logFilePath), 0u); + std::ifstream ifile{std::string(logFilePath)}; + ASSERT_TRUE(ifile.good()); + std::string logText{}; + std::string line{}; + while(std::getline(ifile, line)) + logText += line; + (([&](){ EXPECT_NE(logText.find(std::forward(args)), std::string::npos); }() ), ...); + #endif } template void assertLogDoesNotContain(std::string_view logFilePath, Args&&... args) { - static_assert((is_string_type && ...), "All arguments must be std::string or const char*"); - - ASSERT_TRUE(std::filesystem::exists(logFilePath)); - ASSERT_GT(std::filesystem::file_size(logFilePath), 0u); - std::ifstream ifile{std::string(logFilePath)}; - ASSERT_TRUE(ifile.good()); - std::string logText{}; - std::string line{}; - while(std::getline(ifile, line)) - logText += line; - (([&](){ EXPECT_EQ(logText.find(std::forward(args)), - std::string::npos) << "Log contains substring '" - << std::forward(args) << "' (should be absent)"; }() ), ...); + #if DMX_DEBUG_BUILD + static_assert((is_string_type && ...), "All arguments must be std::string or const char*"); + + ASSERT_TRUE(std::filesystem::exists(logFilePath)); + ASSERT_GT(std::filesystem::file_size(logFilePath), 0u); + std::ifstream ifile{std::string(logFilePath)}; + ASSERT_TRUE(ifile.good()); + std::string logText{}; + std::string line{}; + while(std::getline(ifile, line)) + logText += line; + (([&](){ EXPECT_EQ(logText.find(std::forward(args)), + std::string::npos) << "Log contains substring '" + << std::forward(args) << "' (should be absent)"; }() ), ...); + #endif } } // namespace dmxdenoiser diff --git a/tests/ConvolutionFilter_test.cpp b/tests/ConvolutionFilter_test.cpp index 88c6b52..6a34701 100644 --- a/tests/ConvolutionFilter_test.cpp +++ b/tests/ConvolutionFilter_test.cpp @@ -31,7 +31,6 @@ class ConvolutionFilterTest : public ::testing::Test { void SetUp() override { removeLogFile(); DMX_LOG_INIT(DMX_MIN_LOG_LEVEL, &std::clog, this->getLogPath()); - std::cout << "DMX_MIN_LOG_LEVEL: " << DMX_MIN_LOG_LEVEL << '\n'; } void TearDown() override { From 487a7a044b86ac19fe99e30de37f717bc3921e3c Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 06:44:58 +0300 Subject: [PATCH 2588/2596] update --- tests/FilterFactory_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/FilterFactory_test.cpp b/tests/FilterFactory_test.cpp index 2a60171..5bf2d8c 100644 --- a/tests/FilterFactory_test.cpp +++ b/tests/FilterFactory_test.cpp @@ -4,6 +4,7 @@ #include "AssertLogContains.hpp" #include #include +#include #include #include From e113c6174a23a7c9acf24aeec8de6538c2ac242a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 21:49:17 +0000 Subject: [PATCH 2589/2596] update --- cli/main.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/cli/main.cpp b/cli/main.cpp index bf72705..392f744 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -6,12 +6,14 @@ using namespace dmxdenoiser; int main(int argc, char** argv) { - std::cout << "DMX Denoiser run.\nArgs: "; + std::cout << "DMX Denoiser v0.1.0.\n"; - for(int i = 0; i < argc; ++i) - std::cout << argv[i] << ' '; - + // Init log DMX_LOG_INIT(DMX_MIN_LOG_LEVEL, &std::clog, "./dmxdenoiser.log"); + // parse params + for(int i = 0; i < argc; ++i) + std::cout << argv[i] << ' '; + return 0; } From 9da364d6bbbd3c6c294961b1db4ee9af9efed9ae Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Mon, 10 Nov 2025 22:40:02 +0000 Subject: [PATCH 2590/2596] update command --- command | 11 ++++++++++- command copy | 52 ---------------------------------------------------- 2 files changed, 10 insertions(+), 53 deletions(-) delete mode 100644 command copy diff --git a/command b/command index 8918030..ee981e4 100644 --- a/command +++ b/command @@ -59,4 +59,13 @@ cmake -S . -B build -G Ninja ^ -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ -DCMAKE_CUDA_ARCHITECTURES=native && ^ cmake --build build -j16 && ^ -ctest --test-dir build --output-on-failure --verbose -j16 \ No newline at end of file +ctest --test-dir build --output-on-failure --verbose -j16 + + +cmake --preset mac-cpu-debug +cmake --build --preset mac-cpu-debug +ctest -R ConvolutionFilter_test --preset mac-cpu-debug --parallel 8 --verbose + +cmake --preset mac-cpu-dev +cmake --build --preset mac-cpu-dev +ctest -R ConvolutionFilter_test --preset mac-cpu-dev --parallel 8 --verbose diff --git a/command copy b/command copy deleted file mode 100644 index 84958ae..0000000 --- a/command copy +++ /dev/null @@ -1,52 +0,0 @@ -./dmxdenoiser - --start 1 - --end 100 - --gpu 0 - --frames 3 - --beauty default - --albedo albedo - --normal tech.####.exr:N - --depth tech.####.exr:z - --aluxary - --output filtered.####.exr - - -# Install openexr on Windows -git clone https://github.com/microsoft/vcpkg.git -cd vcpkg -.\bootstrap-vcpkg.bat -.\vcpkg\vcpkg.exe install --triplet x64-windows - -grep CMAKE_BUILD_TYPE build-release/CMakeCache.txt -# should print: CMAKE_BUILD_TYPE:STRING=Release - -rm -f CMakeCache.txt CMakeFiles 2>/dev/null || true - -# Debug tree -Debug build & run tests: -cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=Debug -(cmake --build build-debug -j 8 && cd build-debug && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) - -# Release tree -Release build & run tests: -cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release -(cmake --build build-release -j 8 && cd build-release && ctest --output-on-failure --verbose -j 8 && cd .. && cd ..) - -# Windows -# 1. cleanup: -if (Test-Path build) { Remove-Item build -Recurse -Force } -if (Test-Path CMakeCache.txt) { Remove-Item CMakeCache.txt } -if (Test-Path CMakeFiles) { Remove-Item CMakeFiles -Recurse -Force } - -cmake -S . -B build -G "Visual Studio 17 2022" -A x64 ` - -DCMAKE_TOOLCHAIN_FILE="$PWD\vcpkg\scripts\buildsystems\vcpkg.cmake" -cmake --build build -j 8 --config Release - -call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=x64 -host_arch=x64 && ^ -cmake -S . -B build -G Ninja ^ - -DCMAKE_BUILD_TYPE=Release ^ - -DCMAKE_TOOLCHAIN_FILE="%CD%\vcpkg\scripts\buildsystems\vcpkg.cmake" ^ - -DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/nvcc.exe" ^ - -DCMAKE_CUDA_ARCHITECTURES=native && ^ -cmake --build build -j8 && ^ -ctest --test-dir build --output-on-failure --verbose -j8 \ No newline at end of file From 9b2a3aa4d4a0016ba19f2860e010f40f53f567e0 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 02:13:32 +0000 Subject: [PATCH 2591/2596] refactor actions --- .github/workflows/linux_build_and_test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux_build_and_test.yaml b/.github/workflows/linux_build_and_test.yaml index 313126c..7ba4329 100644 --- a/.github/workflows/linux_build_and_test.yaml +++ b/.github/workflows/linux_build_and_test.yaml @@ -2,9 +2,9 @@ name: linux-build-and-test on: push: - branches: [ main ] + branches: [ main, develop ] pull_request: - branches: [ main ] + branches: [ main, develop ] jobs: linux-build-and-test: From df19bfc0aa74c678eb5a4a43047e8dd296852f3a Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 02:18:00 +0000 Subject: [PATCH 2592/2596] fix actions --- .github/workflows/linux_build_and_test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux_build_and_test.yaml b/.github/workflows/linux_build_and_test.yaml index 7ba4329..a10d352 100644 --- a/.github/workflows/linux_build_and_test.yaml +++ b/.github/workflows/linux_build_and_test.yaml @@ -24,10 +24,10 @@ jobs: run: sudo apt-get update && sudo apt-get install -y g++ ninja-build - name: Configure - run: cmake -S . -B build -G Ninja + run: cmake --preset linux-cpu-dev - name: Build - run: cmake --build build --parallel --config Release + run: cmake --build --preset linux-cpu-release - name: Run tests - run: cd build && ctest --output-on-failure --verbose + run: ctest --preset linux-cpu-release From 2f000f416ba5fe9b7c8bd000c8d2c26ca65ded93 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 02:22:58 +0000 Subject: [PATCH 2593/2596] fix2 actions --- .github/workflows/linux_build_and_test.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linux_build_and_test.yaml b/.github/workflows/linux_build_and_test.yaml index a10d352..6dd8aff 100644 --- a/.github/workflows/linux_build_and_test.yaml +++ b/.github/workflows/linux_build_and_test.yaml @@ -17,17 +17,11 @@ jobs: - name: Set up CMake uses: jwlawson/actions-setup-cmake@v2 - - name: Install OpenEXR (Ubuntu) - run: sudo apt-get update && sudo apt-get install -y libopenexr-dev libimath-dev - - - name: Install dependencies - run: sudo apt-get update && sudo apt-get install -y g++ ninja-build - - name: Configure - run: cmake --preset linux-cpu-dev + run: cmake --preset linux-cpu-debug - name: Build - run: cmake --build --preset linux-cpu-release + run: cmake --build --preset linux-cpu-debug - name: Run tests - run: ctest --preset linux-cpu-release + run: ctest --preset linux-cpu-debug From c15d290bd5f5744106e98247e94b6b44dbb7c827 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 02:34:26 +0000 Subject: [PATCH 2594/2596] fix cmake generator --- CMakeLists.txt | 2 +- CMakePresets.json | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eda4018..bd88952 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,7 +73,7 @@ target_link_libraries(dmxcore OpenEXR::OpenEXR ) -if(DMX_CUDA_ENABLED) +if(BUILD_CUDA) if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES) set(CMAKE_CUDA_ARCHITECTURES "75;86;87;89;90;120" CACHE STRING "CUDA architectures") endif() diff --git a/CMakePresets.json b/CMakePresets.json index 8db04a2..9cdb161 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -34,7 +34,7 @@ { "name": "linux-cpu-dev", "displayName": "Linux CPU Dev", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-cpu-dev", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", @@ -47,7 +47,7 @@ { "name": "linux-cpu-debug", "displayName": "Linux CPU Debug", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-cpu-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", @@ -60,7 +60,7 @@ { "name": "linux-cpu-release", "displayName": "Linux CPU Release", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-cpu-release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", @@ -71,7 +71,7 @@ { "name": "linux-gpu-dev", "displayName": "Linux CUDA Dev", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-gpu-dev", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", @@ -86,7 +86,7 @@ { "name": "linux-gpu-debug", "displayName": "Linux CUDA Debug", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-gpu-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", @@ -101,7 +101,7 @@ { "name": "linux-gpu-release", "displayName": "Linux CUDA Release", - "generator": "Ninja", + "generator": "Unix Makefiles", "binaryDir": "build-linux-gpu-release", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", From 25530bf6466d554ecb94b4452733afde4fdffebb Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 02:54:33 +0000 Subject: [PATCH 2595/2596] fix filter factory --- tests/FilterFactory_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/FilterFactory_test.cpp b/tests/FilterFactory_test.cpp index 5bf2d8c..2a60171 100644 --- a/tests/FilterFactory_test.cpp +++ b/tests/FilterFactory_test.cpp @@ -4,7 +4,6 @@ #include "AssertLogContains.hpp" #include #include -#include #include #include From 5888de00723a9a88a82f4d1c78a1f240243b75b6 Mon Sep 17 00:00:00 2001 From: ginzburg-dev Date: Tue, 11 Nov 2025 03:47:01 +0000 Subject: [PATCH 2596/2596] refactor cmakelists txt --- CMakeLists.txt | 88 +++++++++++++++++++++++++++++++------------------- 1 file changed, 54 insertions(+), 34 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd88952..5a879fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,10 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) +if(POLICY CMP0169) + cmake_policy(SET CMP0169 OLD) +endif() + include(FetchContent) FetchContent_Declare(Imath @@ -40,59 +44,50 @@ FetchContent_MakeAvailable(OpenEXR) # ---- Sources file(GLOB_RECURSE SRC_CPP CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cpp) +file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) set(CLI_MAIN ${CMAKE_SOURCE_DIR}/cli/main.cpp) if(BUILD_CUDA) enable_language(CUDA) find_package(CUDAToolkit REQUIRED) add_compile_definitions(DMX_ENABLE_CUDA=1) - file(GLOB_RECURSE SRC_CU CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/src/*.cu) + if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES) + set(CMAKE_CUDA_ARCHITECTURES "75;86;87;89;90;120" CACHE STRING "CUDA architectures") + endif() else() add_compile_definitions(DMX_ENABLE_CUDA=0) set(SRC_CU) endif() # ---- Executable -add_library(dmxcore ${SRC_CPP} ${SRC_CU}) - -# Public includes: your headers + Imath/OpenEXR parents (so OpenEXR/… and Imath/… resolve) -target_include_directories(dmxcore - PUBLIC - $ - $ - # Imath / OpenEXR headers from FetchContent - $ - $ - $ - $ +add_executable(dmxdenoiser + ${CLI_MAIN} + ${SRC_CPP} + ${SRC_CU} +) + +target_include_directories(dmxdenoiser PRIVATE + ${CMAKE_SOURCE_DIR}/include + ${imath_SOURCE_DIR}/src + ${imath_BINARY_DIR}/config + ${openexr_SOURCE_DIR}/src/lib + ${openexr_BINARY_DIR}/config ) -target_link_libraries(dmxcore - PUBLIC +target_link_libraries(dmxdenoiser + PRIVATE Imath::Imath OpenEXR::OpenEXR ) if(BUILD_CUDA) - if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES) - set(CMAKE_CUDA_ARCHITECTURES "75;86;87;89;90;120" CACHE STRING "CUDA architectures") - endif() -endif() - -if(BUILD_CUDA) - target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=1) - target_link_libraries(dmxcore PRIVATE CUDA::cudart CUDA::cuda_driver) - set_target_properties(dmxcore PROPERTIES + target_link_libraries(dmxdenoiser PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(dmxdenoiser PROPERTIES CUDA_SEPARABLE_COMPILATION ON CUDA_ARCHITECTURES "${CMAKE_CUDA_ARCHITECTURES}" ) -else() - target_compile_definitions(dmxcore PUBLIC DMX_ENABLE_CUDA=0) endif() -add_executable(dmxdenoiser ${CLI_MAIN}) -target_link_libraries(dmxdenoiser PRIVATE dmxcore) - # Silence MSVC deprecation spam from OpenEXR threadpool atomics if(MSVC) add_compile_definitions(_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) @@ -101,6 +96,8 @@ endif() # ---- Tests if(BUILD_TESTING) include(CTest) + enable_testing() + FetchContent_Declare(googletest GIT_REPOSITORY https://github.com/google/googletest.git GIT_TAG v1.14.0 @@ -110,16 +107,39 @@ if(BUILD_TESTING) file(GLOB TEST_SOURCES CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/tests/*.cpp) foreach(test_src ${TEST_SOURCES}) get_filename_component(test_name ${test_src} NAME_WE) - add_executable(${test_name} ${test_src}) - target_link_libraries(${test_name} - PRIVATE - gtest_main - dmxcore + add_executable(${test_name} + ${SRC_CPP} + ${SRC_CU} + ${test_src} ) + + target_include_directories(${test_name} PRIVATE + ${CMAKE_SOURCE_DIR}/include + ${imath_SOURCE_DIR}/src + ${imath_BINARY_DIR}/config + ${openexr_SOURCE_DIR}/src/lib + ${openexr_BINARY_DIR}/config + ) + + target_link_libraries(${test_name} PRIVATE + gtest_main + Imath::Imath + OpenEXR::OpenEXR + ) + + if(BUILD_CUDA) + target_link_libraries(${test_name} PRIVATE CUDA::cudart CUDA::cuda_driver) + set_target_properties(${test_name} PROPERTIES + CUDA_SEPARABLE_COMPILATION ON + CUDA_ARCHITECTURES "${CMAKE_CUDA_ARCHITECTURES}" + ) + endif() + if(MSVC) target_compile_definitions(${test_name} PUBLIC _SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING) endif() + add_test(NAME ${test_name} COMMAND ${test_name}) endforeach() endif()