-
Notifications
You must be signed in to change notification settings - Fork 163
/
OpenColorIO-Configs.pri
43 lines (38 loc) · 1.29 KB
/
OpenColorIO-Configs.pri
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
OCIO.files = \
$$PWD/OpenColorIO-Configs/blender \
$$PWD/OpenColorIO-Configs/natron \
$$PWD/OpenColorIO-Configs/nuke-default
OCIO_extra.files = \
$$PWD/OpenColorIO-Configs/ChangeLog \
$$PWD/OpenColorIO-Configs/README \
$$PWD/OpenColorIO-Configs/aces_0.1.1 \
$$PWD/OpenColorIO-Configs/aces_0.7.1 \
$$PWD/OpenColorIO-Configs/blender-cycles \
$$PWD/OpenColorIO-Configs/spi-anim \
$$PWD/OpenColorIO-Configs/spi-vfx
# ACES 1.0.1 also has baked luts and python files which we don't want to bundle
OCIO_aces_101.files = \
$$PWD/OpenColorIO-Configs/aces_1.0.1/config.ocio \
$$PWD/OpenColorIO-Configs/aces_1.0.1/luts
macx {
OCIO.path = Contents/Resources/OpenColorIO-Configs
QMAKE_BUNDLE_DATA += OCIO
OCIO_extra.path = Contents/Resources/OpenColorIO-Configs
#QMAKE_BUNDLE_DATA += OCIO_extra
OCIO_aces_101.path = Contents/Resources/OpenColorIO-Configs/aces_1.0.1
#QMAKE_BUNDLE_DATA += OCIO_aces_101
}
!macx {
OCIO.path = $$OUT_PWD/OpenColorIO-Configs
unix {
isEmpty(PREFIX) {
PREFIX = /usr/local
}
OCIO.path = $${PREFIX}/share/OpenColorIO-Configs
}
INSTALLS += OCIO
OCIO_extra.path = $$OUT_PWD/OpenColorIO-Configs
#INSTALLS += OCIO_extra
OCIO_aces_101.path = $$OUT_PWD/OpenColorIO-Configs/aces_1.0.1
#INSTALLS += OCIO_aces_101
}