Skip to content

Commit e04c3d7

Browse files
committed
Change to use the symbol link to the webp folder, fix the SwiftPM
1 parent 413f221 commit e04c3d7

File tree

8 files changed

+11
-4
lines changed

8 files changed

+11
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ let package = Package(
2121
.target(
2222
name: "libwebp",
2323
dependencies: [],
24-
path: "libwebp",
25-
sources: ["src"],
26-
publicHeadersPath: "src",
27-
cSettings: [.headerSearchPath(".")])
24+
path: ".",
25+
sources: ["libwebp/src"],
26+
publicHeadersPath: "include",
27+
cSettings: [.headerSearchPath("libwebp")])
2828
]
2929
)

include/webp/decode.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/decode.h

include/webp/demux.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/demux.h

include/webp/encode.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/encode.h

include/webp/format_constants.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/format_constants.h

include/webp/mux.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/mux.h

include/webp/mux_types.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/mux_types.h

include/webp/types.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../libwebp/src/webp/types.h

0 commit comments

Comments
 (0)