-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use std::any and std::optional * Update Python bindings * Fix missing std::any_cast * Set minimum OSX version to 10.13 --------- Signed-off-by: Darby Johnston <[email protected]>
- Loading branch information
1 parent
afcb552
commit ddb39f5
Showing
61 changed files
with
675 additions
and
742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
[submodule "src/deps/optional-lite"] | ||
path = src/deps/optional-lite | ||
url = https://github.com/martinmoene/optional-lite | ||
[submodule "src/deps/pybind11"] | ||
path = src/deps/pybind11 | ||
url = https://github.com/pybind/pybind11.git | ||
[submodule "src/deps/rapidjson"] | ||
path = src/deps/rapidjson | ||
url = https://github.com/Tencent/rapidjson.git | ||
[submodule "src/deps/any"] | ||
path = src/deps/any | ||
url = https://github.com/thelink2012/any.git | ||
[submodule "src/deps/Imath"] | ||
path = src/deps/Imath | ||
url = https://github.com/AcademySoftwareFoundation/Imath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ set(OTIO_AUTHOR_EMAIL "[email protected]") | |
set(OTIO_LICENSE "Modified Apache 2.0 License") | ||
|
||
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "") | ||
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "Minimum OS X deployment version") | ||
|
||
project(OpenTimelineIO VERSION ${OTIO_VERSION} LANGUAGES C CXX) | ||
|
||
|
@@ -142,7 +143,7 @@ endif() | |
# Global language settings | ||
|
||
if (NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 14) | ||
set(CMAKE_CXX_STANDARD 17) | ||
endif() | ||
|
||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule any
deleted from
bfc77f
Submodule optional-lite
deleted from
be720e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.