4

我正在用 Swift 开发服务器并使用 Swift 包管理器。并且发现在我的 Mac OS 系统上进行开发以生成 Xcode 项目以使用 Xcode 作为我的 IDE 时很方便(即,有时,我的包依赖项必须更新。我一直在swift package generate-xcodeproj这样做。我的此时问题出现了——我在 Xcode 中创建了一些设置。例如,我设置了一个 DEBUG 标志,并且我有一个处于复制文件阶段的 .plist 文件。当我重新生成 Xcode 项目时,这些会丢失. 似乎我不能简单地使用swift package update,因为有时依赖项中的文件会发生变化,并且这些文件不会传播到 Xcode 项目。

我想要的是一种在 Xcode 之外的文件中单独建立 Xcode 设置的方法,当我执行swift package generate-xcodeproj. 我还没有看到这样做的方法。

一个相关的问题是:当我这样做时,swift build我希望使用相同的构建设置。

建议?

4

3 回答 3

4

我无能为力Copy Files Phase

但是我一直在玩弄条件编译,如下所示:

swift package generate-xcodeproj --xcconfig-overrides Sandbox.xcconfig

沙盒.xcconfig

FLAG_SANDBOX = -DSANDBOX
OTHER_SWIFT_FLAGS = $(FLAG_SANDBOX)

这将创建一个已定义的 Xcode 项目SANDBOX

这可以在这样的快速代码中使用

#if SANDBOX
    print("sandbox")
#else
    print("production")
#endif
于 2017-10-03T08:01:23.410 回答
3

每次重新生成它时,我都会使用脚本或 makefile 将您的设置导入生成的 Xcode 项目。您可以使用xcodeproj ruby​​gem

请参阅示例脚本

关于在 中使用你的设置swift build,你能举一个这样的设置的例子吗?通常,makefile 可以读取您的设置文件并将相应的参数传递给swift build.

于 2017-01-08T05:32:09.853 回答
2

根据上面@ vadim的回答,这是我问题第一部分的xcodeproj ruby​​gem解决方案:

#!/usr/bin/ruby

# Tweak the .xcodeproj after creating with the swift package manager.

# Resources: 
# https://stackoverflow.com/questions/41527782/swift-package-manager-and-xcode-retaining-xcode-settings/41612477#41612477
# https://stackoverflow.com/questions/20072937/add-run-script-build-phase-to-xcode-project-from-podspec
# https://github.com/IBM-Swift/Kitura-Build/blob/master/build/fix_xcode_project.rb
# http://www.rubydoc.info/github/CocoaPods/Xcodeproj/Xcodeproj%2FProject%2FObject%2FAbstractTarget%3Anew_shell_script_build_phase
# http://www.rubydoc.info/github/CocoaPods/Xcodeproj/Xcodeproj/Project/Object/AbstractTarget
# https://gist.github.com/niklasberglund/129065e2612d00c811d0
# https://github.com/CocoaPods/Xcodeproj
# https://stackoverflow.com/questions/34367048/how-do-you-automate-do-copy-files-in-build-phases-using-a-cocoapods-post-insta?rq=1

require 'xcodeproj'

path_to_project = "Server.xcodeproj"
project = Xcodeproj::Project.open(path_to_project)

# 1) Add Copy Files Phase for Server.plist to the Products directory for Server target
target = project.targets.select { |target| target.name == 'Server' }.first
puts "Add Copy Files Phase to #{target}"
phase = target.new_copy_files_build_phase()

# Contrary to the docs (see http://www.rubydoc.info/github/CocoaPods/Xcodeproj/Xcodeproj/Project/Object/PBXCopyFilesBuildPhase) I believe this is not a path, but rather a code, e.g., 16 indicates to copy the file to the Products Directory.
phase.dst_subfolder_spec = "16"

fileRef = project.new(Xcodeproj::Project::Object::PBXFileReference)
fileRef.path = 'Server.plist'

phase.add_file_reference(fileRef)   

# 2) Add in script phase for testing target-- because I haven't figured out to get access to the Products directory at test-run time.
target = project.targets.select { |target| target.name == 'ServerTests' }.first
puts "Add Script Phase to #{target}"
phase = target.new_shell_script_build_phase()
phase.shell_script = "cp Server.plist /tmp"

# 3) Add in DEBUG flag

# A little overkill, but hopefully appending a DEBUG flag in the Debug configuration for each target doesn't hurt it.
project.targets.each do |target|
    puts "Appending DEBUG flag to #{target}"

    if target.build_settings('Debug')['OTHER_SWIFT_FLAGS'].nil?
        target.build_settings('Debug')['OTHER_SWIFT_FLAGS'] = ""
    end

    target.build_settings('Debug')['OTHER_SWIFT_FLAGS'] << '-DDEBUG'
end

project.save()
于 2017-01-12T11:49:03.893 回答