From 9a1ca7579b1ac793ae2d7bbee667e498d9bc8322 Mon Sep 17 00:00:00 2001 From: Kimball Thurston Date: Fri, 12 Jul 2019 20:50:36 +1200 Subject: [PATCH] Add missing file, remove unused exrbuild tool cmake Signed-off-by: Kimball Thurston --- OpenEXR/CMakeLists.txt | 1 - OpenEXR/doc/CMakeLists.txt | 12 ++++++++++++ OpenEXR/exrbuild/CMakeLists.txt | 4 ---- 3 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 OpenEXR/doc/CMakeLists.txt delete mode 100644 OpenEXR/exrbuild/CMakeLists.txt diff --git a/OpenEXR/CMakeLists.txt b/OpenEXR/CMakeLists.txt index 14e88e4963..41646a9c68 100644 --- a/OpenEXR/CMakeLists.txt +++ b/OpenEXR/CMakeLists.txt @@ -52,7 +52,6 @@ endif() ########################## if(OPENEXR_BUILD_UTILS) add_subdirectory( exr2aces ) - add_subdirectory( exrbuild ) add_subdirectory( exrheader ) add_subdirectory( exrmaketiled ) add_subdirectory( exrstdattr ) diff --git a/OpenEXR/doc/CMakeLists.txt b/OpenEXR/doc/CMakeLists.txt new file mode 100644 index 0000000000..09a065273a --- /dev/null +++ b/OpenEXR/doc/CMakeLists.txt @@ -0,0 +1,12 @@ + +install( + FILES + TechnicalIntroduction.pdf + ReadingAndWritingImageFiles.pdf + OpenEXRFileLayout.pdf + MultiViewOpenEXR.pdf + InterpretingDeepPixels.pdf + TheoryDeepPixels.pdf + DESTINATION + ${CMAKE_INSTALL_DOCDIR} +) diff --git a/OpenEXR/exrbuild/CMakeLists.txt b/OpenEXR/exrbuild/CMakeLists.txt deleted file mode 100644 index 08812ee684..0000000000 --- a/OpenEXR/exrbuild/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ - -add_executable(exrbuild exrbuild.cpp) -target_link_libraries(exrbuild OpenEXR::IlmImf) -install(TARGETS exrbuild DESTINATION ${CMAKE_INSTALL_BINDIR})