Skip to content

Commit

Permalink
Github Actions Fail OpenTimelineIO#45 - Potential Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jameclarke committed Feb 7, 2024
1 parent 2f6ee9f commit b42ba94
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,25 @@ let package = Package(
.target(name: "OpenTime_CXX",
dependencies: ["otio_header_root"],
path: "OpenTimelineIO/src/opentime",
exclude: [ "CMakeLists.txt", "OpentimeConfig.cmake.in"],
exclude: ["CMakeLists.txt", "OpenTimeConfig.cmake.in"],
sources: ["."],
publicHeadersPath: ".",
cxxSettings: [ .headerSearchPath(".")]),
cxxSettings: [
.headerSearchPath("."),
.headerSearchPath("../OpenTimelineIO/src/opentime")]),


.target(name: "OpenTimelineIO_CXX",
dependencies: ["OpenTime_CXX", "any", "optionallite"],
path: "OpenTimelineIO/src/opentimelineio",
exclude: [ "CMakeLists.txt", "CORE_VERSION_MAP.last.cpp", "OpentimelineIOConfig.cmake.in"],
exclude: [ "CMakeLists.txt", "CORE_VERSION_MAP.last.cpp", "OpenTimelineIOConfig.cmake.in"],
sources: ["."],
publicHeadersPath: ".",
cxxSettings: [
.headerSearchPath("."),
.headerSearchPath("../deps/Imath/src/Imath"),
.headerSearchPath("../../../Sources/cpp"),
.headerSearchPath("../OpenTimelineIO/src/opentime"),
.headerSearchPath("../deps/rapidjson/include")]),

.target(name: "OpenTimelineIO_objc",
Expand Down

0 comments on commit b42ba94

Please sign in to comment.