来自Visual Studio背景,我发现很难理解Apple如何让我使用Xcode来构建更大的项目。尝试应用Visual Studio语义可能是我的错,但我很好奇应该如何组织一个看起来像这样的“解决方案”。
MySolution
-Library1 (output: DLL, configurations: Debug/Release)
-Library2 (output: DLL, configurations: Debug/Release)
-Application1 (output: EXE, configurations: Debug/Release, references Library1 and Library2)
如何将此移植到Xcode用于目标的说法中?这些组件中的每一个都应该是单个工作区内的自己的项目,还是全部卡在一起包含多个目标的单个项目中?
感谢。