Skip to content

Commit

Permalink
Add forked GCDWebServer for Fire-perf unit tests on Xcode 15
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Apr 11, 2024
1 parent 4b24159 commit 3cfca36
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions GCDWebServer/3.5.5/GCDWebServer.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"name": "GCDWebServer",
"version": "3.5.5",
"authors": {
"Pierre-Olivier Latour": "info@pol-online.net"
},
"license": {
"type": "BSD",
"file": "LICENSE"
},
"homepage": "https://github.com/swisspol/GCDWebServer",
"summary": "Lightweight GCD based HTTP server for OS X & iOS (includes web based uploader & WebDAV server)",
"source": {
"git": "https://github.com/swisspol/GCDWebServer.git",
"tag": "3.5.4"
},
"platforms": {
"ios": "11.0",
"tvos": "12.0"
},
"requires_arc": true,
"default_subspecs": "Core",
"subspecs": [
{
"name": "Core",
"source_files": "GCDWebServer/**/*.{h,m}",
"private_header_files": "GCDWebServer/Core/GCDWebServerPrivate.h",
"requires_arc": true,
"ios": {
"libraries": "z",
"frameworks": [
"MobileCoreServices",
"CFNetwork"
]
},
"tvos": {
"libraries": "z",
"frameworks": [
"MobileCoreServices",
"CFNetwork"
]
},
"osx": {
"libraries": "z",
"frameworks": "SystemConfiguration"
}
},
{
"name": "WebDAV",
"dependencies": {
"GCDWebServer/Core": [

]
},
"source_files": "GCDWebDAVServer/*.{h,m}",
"requires_arc": true,
"ios": {
"libraries": "xml2"
},
"tvos": {
"libraries": "xml2"
},
"osx": {
"libraries": "xml2"
},
"compiler_flags": "-I$(SDKROOT)/usr/include/libxml2"
},
{
"name": "WebUploader",
"dependencies": {
"GCDWebServer/Core": [

]
},
"source_files": "GCDWebUploader/*.{h,m}",
"requires_arc": true,
"resources": "GCDWebUploader/GCDWebUploader.bundle"
}
]
}

0 comments on commit 3cfca36

Please sign in to comment.