The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
325 B
22 lines
325 B
5 years ago
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main(int argc, const char *argv[]) {
|
||
|
if(argc < 2) {
|
||
|
cerr << argv[0] << " requires an output file!" << endl;
|
||
|
return 1;
|
||
|
}
|
||
|
ofstream out(argv[1]);
|
||
|
out << R"(
|
||
|
#include "test.hpp"
|
||
|
|
||
|
std::string getStr() {
|
||
|
return "Hello World";
|
||
|
}
|
||
|
)";
|
||
|
|
||
|
return 0;
|
||
|
}
|