Skip to content

Commit 13b968c

Browse files
committed
Don't try to build rapidjson
rapidjson as a submodule won't build in our environment due to old CMake version requirements, and since it's a header-only library, we only need the headers to be present to allow opentimelineio to build. Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>
1 parent dddc02d commit 13b968c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/deps/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ if(NOT OTIO_FIND_PYBIND11 AND OTIO_PYTHON_INSTALL)
3333
add_subdirectory(pybind11)
3434
endif()
3535

36-
if(NOT OTIO_FIND_RAPIDJSON)
37-
add_subdirectory(rapidjson)
38-
endif()
36+
# Don't try to build rapidjson, it won't, and since it's header-only, we don't need to built id.
3937

4038
if(NOT OTIO_FIND_IMATH)
4139
# preserve BUILD_SHARED_LIBS options for this project, but set it off for Imath

0 commit comments

Comments
 (0)