File tree Expand file tree Collapse file tree 5 files changed +477
-4
lines changed
Expand file tree Collapse file tree 5 files changed +477
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ include(ojph_version.cmake)
77project (openjph VERSION ${OPENJPH_VERSION} DESCRIPTION "Open source implementation of JPH" LANGUAGES CXX)
88set_property (GLOBAL PROPERTY USE_FOLDERS ON )
99
10+ set (CMAKE_MODULE_PATH
11+ "${CMAKE_CURRENT_SOURCE_DIR} /cmake/modules"
12+ ${CMAKE_MODULE_PATH}
13+ )
14+
1015################################################################################################
1116# Building OpenJPH
1217################################################################################################
@@ -22,6 +27,7 @@ message(STATUS "CPU Architecture is ${OJPH_TARGET_ARCH}")
2227## options
2328option (BUILD_SHARED_LIBS "Shared Libraries" ON )
2429option (OJPH_ENABLE_TIFF_SUPPORT "Enables input and output support for TIFF files" ON )
30+ option (OJPH_ENABLE_OPENEXR_SUPPORT "Enables input and output support for OpenEXR files" ON )
2531option (OJPH_BUILD_TESTS "Enables building test code" OFF )
2632option (OJPH_BUILD_EXECUTABLES "Enables building command line executables" ON )
2733option (OJPH_BUILD_STREAM_EXPAND "Enables building ojph_stream_expand executable" OFF )
@@ -66,6 +72,7 @@ endif()
6672if (EMSCRIPTEN)
6773 set (BUILD_SHARED_LIBS OFF )
6874 set (OJPH_ENABLE_TIFF_SUPPORT OFF )
75+ set (OJPH_ENABLE_OPENEXR_SUPPORT OFF )
6976 set (OJPH_BUILD_STREAM_EXPAND OFF )
7077 set (OJPH_DISABLE_SIMD ON )
7178endif ()
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ENV DEBIAN_FRONTEND noninteractive
99RUN apt-get -y install cmake
1010RUN apt-get -y install g++
1111RUN apt-get -y install libtiff-dev
12- RUN apt-get -y install openexr
12+ RUN apt-get -y install libopenexr-dev
1313
1414# install development debugging tools
1515RUN apt-get -y install valgrind
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments