Static curl framework for blink
This commit is contained in:
parent
d937854e2c
commit
f12ec0fdfb
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
|
@ -0,0 +1,19 @@
|
|||
//
|
||||
// curl_ios.h
|
||||
// curl_ios
|
||||
//
|
||||
// Created by Nicolas Holzschuch on 05/12/2017.
|
||||
// Copyright © 2017 Nicolas Holzschuch. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
//! Project version number for curl_ios.
|
||||
FOUNDATION_EXPORT double curl_iosVersionNumber;
|
||||
|
||||
//! Project version string for curl_ios.
|
||||
FOUNDATION_EXPORT const unsigned char curl_iosVersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <curl_ios/PublicHeader.h>
|
||||
|
||||
|
Loading…
Reference in New Issue