blob: d5719ac8e7b27d3775050dcbec3a087d1cf3d2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
diff --git a/OpenEXR/doc/CMakeLists.txt b/OpenEXR/doc/CMakeLists.txt
index 58a543f..1c5339c 100644
--- a/OpenEXR/doc/CMakeLists.txt
+++ b/OpenEXR/doc/CMakeLists.txt
@@ -3,12 +3,11 @@
install(
FILES
- TechnicalIntroduction.pdf
- ReadingAndWritingImageFiles.pdf
- OpenEXRFileLayout.pdf
- MultiViewOpenEXR.pdf
- InterpretingDeepPixels.pdf
- TheoryDeepPixels.pdf
+ TechnicalIntroduction.odt
+ ReadingAndWritingImageFiles.odt
+ OpenEXRFileLayout.odt
+ MultiViewOpenEXR.odt
+ InterpretingDeepPixels.docx
DESTINATION
${CMAKE_INSTALL_DOCDIR}
)
diff --git a/OpenEXR/doc/Makefile.am b/OpenEXR/doc/Makefile.am
index cca1ce7..cdb325a 100644
--- a/OpenEXR/doc/Makefile.am
+++ b/OpenEXR/doc/Makefile.am
@@ -4,11 +4,10 @@
##
EXTRA_DIST = \
- ReadingAndWritingImageFiles.pdf \
- TechnicalIntroduction.pdf \
- OpenEXRFileLayout.pdf \
- MultiViewOpenEXR.pdf \
- InterpretingDeepPixels.pdf \
- TheoryDeepPixels.pdf
+ ReadingAndWritingImageFiles.odt \
+ TechnicalIntroduction.odt \
+ OpenEXRFileLayout.odt \
+ MultiViewOpenEXR.odt \
+ InterpretingDeepPixels.docx
doc_DATA = $(EXTRA_DIST)
diff --git a/OpenEXR_Viewers/CMakeLists.txt b/OpenEXR_Viewers/CMakeLists.txt
index 5efa353..0f45f80 100644
--- a/OpenEXR_Viewers/CMakeLists.txt
+++ b/OpenEXR_Viewers/CMakeLists.txt
@@ -65,7 +65,7 @@ endif()
# Documentation
INSTALL ( FILES
- doc/OpenEXRViewers.pdf
+ doc/OpenEXRViewers.odt
DESTINATION
${CMAKE_INSTALL_PREFIX}/share/doc/OpenEXR-${OPENEXR_VERSION}
)
diff --git a/OpenEXR_Viewers/doc/Makefile.am b/OpenEXR_Viewers/doc/Makefile.am
index 2df8ae8..c7645d3 100644
--- a/OpenEXR_Viewers/doc/Makefile.am
+++ b/OpenEXR_Viewers/doc/Makefile.am
@@ -3,7 +3,7 @@
## Copyright Contributors to the OpenEXR Project.
##
-EXTRA_DIST = OpenEXRViewers.odt OpenEXRViewers.pdf
+EXTRA_DIST = OpenEXRViewers.odt
docdir=$(datadir)/doc/OpenEXR_Viewers-@OPENEXR_VIEWERS_VERSION@
doc_DATA = $(EXTRA_DIST)
|