blob: aa6c55868d140126ce0c954966c219fe62dbaf20 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <fstream>
#include <iostream>
#include "exe_common.h"
int main(int argc, char* argv[])
{
std::cout << "running_exe_RelWithDebInfo\n";
return runRealExe(argc, argv);
}
|