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})