带有多个cpp文件的Xcode项目

时间:2016-11-02 02:35:42

标签: c++ xcode

我有一个项目目录,其中包含多个cpp文件。每个文件都有一个与各个文件相关的主函数。我可以单独执行这些文件中的每一个,还是必须修改Xcode中的某些配置以单独定位每个文件。如果是这样,我必须采取什么步骤?

这就是Xcode中结构的样子

Project1
  Project1
    main1.cpp
    main2.cpp
    main3.cpp

1 个答案:

答案 0 :(得分:3)

在同一项目下拥有多个目标相对简单:

  1. 在项目导航器中单击您的项目:
  2. enter image description here

    1. 转到目标,此处;
    2. enter image description here

      1. 转到“添加目标”:
      2. enter image description here

        1. 选择“macOS”并向下滚动到“命令行工具”:
        2. enter image description here

          1. 给它起个名字,然后完成:
          2. enter image description here

            1. 您将在同一个项目中看到两个目标:
            2. enter image description here

              1. 在“运行”和“停止”按钮旁边,将您的活动方案设置为所需的主文件:
              2. enter image description here