Remove include layout

Co-authored-by: wsxyeah <sxwang.me@gmail.com>
This commit is contained in:
Kyle 2024-05-09 11:10:27 +08:00
parent 61db15dee7
commit 60acfb7a4c
15 changed files with 6 additions and 16 deletions

3
.gitignore vendored
View File

@ -38,4 +38,5 @@ Carthage
.data/
# SwiftPM
.swiftpm
.swiftpm
.build

View File

@ -1 +0,0 @@
../aes_util.h

View File

@ -1 +0,0 @@
../base_util.h

View File

@ -1 +0,0 @@
../cJSON.h

View File

@ -1 +0,0 @@
../clogan_core.h

View File

@ -1 +0,0 @@
../clogan_status.h

View File

@ -1 +0,0 @@
../console_util.h

View File

@ -1 +0,0 @@
../construct_data.h

View File

@ -1 +0,0 @@
../directory_util.h

View File

@ -1 +0,0 @@
../json_util.h

View File

@ -1 +0,0 @@
../logan_config.h

View File

@ -1 +0,0 @@
../mmap_util.h

View File

@ -1 +0,0 @@
../zlib_util.h

View File

@ -1 +0,0 @@
../Logan.h

View File

@ -38,12 +38,14 @@ let package = Package(
name: "CLogan",
dependencies: ["mbedtls"],
path: "Logan/Clogan",
exclude: ["main.c"]
exclude: ["main.c"],
publicHeadersPath: "./"
),
.target(
name: "Logan",
dependencies: ["CLogan"],
path: "Logan/iOS"
path: "Logan/iOS",
publicHeadersPath: "./"
),
]
)