Nuclide C简单的Buck配置

我想使用Buck从Nuclide构建和运行C程序.

问题是我不知道如何在Nuclide中设置一个简单的Buck配置文件来构建然后运行.cpp文件.

那么有人有建议吗?

最佳答案 用Buck建立一个hello-world程序非常容易.在项目目录中创建以下文件:

.buckconfig

(可以是空的)

main.cpp中:

#include <iostream>

int main() {
  std::cout << "Hello, world. " << std::endl;
  return 0;
}

BUCK

cxx_binary(
  name = 'hello-world',
  srcs = [
    'main.cpp'
  ],
)

如果从项目文件夹中打开Atom,Nuclide应该会为您找到所有内容.

要检查每个是否正常,请运行:

buck run //:hello-world

这应该足以开始;进一步的信息可以找到on the Buck website.

点赞