Skip to content

Commit

Permalink
Made project compatible with Xcode 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
BohdanOrlov committed Oct 19, 2018
1 parent c6d4152 commit 30ad03c
Show file tree
Hide file tree
Showing 9 changed files with 158 additions and 119 deletions.
16 changes: 15 additions & 1 deletion RoadmapProject/cocoapods-rome/Podfile
Expand Up @@ -2,7 +2,21 @@

platform :osx, '10.12'

plugin 'cocoapods-rome'
# remove everithing in { } after new release of cocoapods-rome

plugin 'cocoapods-rome', { :pre_compile => Proc.new { |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end

installer.pods_project.save
},

dsym: false,
configuration: 'Release'
}

target 'caesar' do
pod 'Yaml', '3.4.3'
Expand Down
2 changes: 1 addition & 1 deletion RoadmapProject/cocoapods-rome/Podfile.lock
Expand Up @@ -7,6 +7,6 @@ DEPENDENCIES:
SPEC CHECKSUMS:
Yaml: 9f32854890c54304772f02380c3899c8db739800

PODFILE CHECKSUM: db608e6834d98d9fd9f19ec8558b30ecc783177b
PODFILE CHECKSUM: f8e060a293b5fe5f6cced4ba1c4b7b96ac9e42e3

COCOAPODS: 1.4.0
2 changes: 1 addition & 1 deletion RoadmapProject/cocoapods-rome/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

233 changes: 129 additions & 104 deletions RoadmapProject/cocoapods-rome/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

@@ -1,4 +1,4 @@
// Generated by Apple Swift version 4.1.2 (swiftlang-902.0.54 clang-902.0.39.2)
// Generated by Apple Swift version 4.2 (swiftlang-1000.11.37.1 clang-1000.11.45.1)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -129,17 +129,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR __attribute__((enum_extensibility(open)))
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
Expand Down
Binary file not shown.
Binary file not shown.
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>17E199</string>
<string>18A391</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -29,16 +29,16 @@
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>9F1027a</string>
<string>10A255</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>17E189</string>
<string>18A384</string>
<key>DTSDKName</key>
<string>macosx10.13</string>
<string>macosx10.14</string>
<key>DTXcode</key>
<string>0940</string>
<string>1000</string>
<key>DTXcodeBuild</key>
<string>9F1027a</string>
<string>10A255</string>
</dict>
</plist>
Binary file not shown.

0 comments on commit 30ad03c

Please sign in to comment.