| 1097 | constexpr const char* kVersion = "ipc_codegen 1.0.0"; |
| 1098 | |
| 1099 | void printUsage(std::FILE* out) { |
| 1100 | std::fprintf(out, |
| 1101 | "usage: ipc_codegen [options] <input.steamd>...\n" |
| 1102 | " --cpp_out=DIR write generated <name>.gen.h into DIR (default: .)\n" |
| 1103 | " --version print version and exit\n" |
| 1104 | " -h, --help print this help and exit\n"); |
| 1105 | } |
| 1106 | |
| 1107 | std::string stem(const std::string& path) { |
| 1108 | const size_t slash = path.find_last_of("/\\"); |