Sign in
◑
Theme
qemu
/
meson
/
refs/heads/gencustom
/
.
/
test cases
/
cmake
/
8 custom command
/
subprojects
/
cmMod
/
macro_name.cpp
blob: 790557b3ab1874658a14b9276694f18781df1e06 [
file
]
#include
<iostream>
#include
<fstream>
#include
<chrono>
#include
<thread>
using
namespace
std
;
int
main
()
{
this_thread
::
sleep_for
(
chrono
::
seconds
(
1
));
ofstream out1
(
"macro_name.txt"
);
out1
<<
"FOO"
;
return
0
;
}