我想使用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。
要检查每个是否正常工作,请运行:
buck run //:hello-world
这应该足以开始;更多信息可以在Buck网站上找到。