我在哪里可以找到如何使用 cmake + ninja 构建 C++20 模块的示例?
你好.mpp
export module hello;
export int i = 42;
主.cpp:
import hello;
#include <iostream>
int main(){
std::cout << i;
}
我应该在 CMakeLists.txt 中写什么来构建它?我需要一个跨平台的解决方案
我在哪里可以找到如何使用 cmake + ninja 构建 C++20 模块的示例?
你好.mpp
export module hello;
export int i = 42;
主.cpp:
import hello;
#include <iostream>
int main(){
std::cout << i;
}
我应该在 CMakeLists.txt 中写什么来构建它?我需要一个跨平台的解决方案