simple-c2pa

This is a fork of https://gitlab.com/guardianproject/proofmode/simple-c2pa
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/simple-c2pa.git
Log | Files | Refs | README | LICENSE

commit 0ceedf99e9dcc8f847aa5c602d8b8f7e15ec9aca
parent dd6f154616e506caab3a08bbc43a2a003971335b
Author: Darren Clarke <darren@redaranj.com>
Date:   Thu,  7 Dec 2023 09:23:12 +0100

Fix Package.swift error

Diffstat:
M.gitignore | 1+
MPackage.swift | 4++--
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -8,3 +8,4 @@ cache/ bindings/ jniLibs/ ._* +.build/ diff --git a/Package.swift b/Package.swift @@ -21,8 +21,8 @@ let package = Package( ), .target( name: "SimpleC2PA", - path: "apple/src", - dependencies: [ "SimpleC2PAFramework" ] + dependencies: [ "SimpleC2PAFramework" ], + path: "apple/src" ), ] )