parent
4887450de6
commit
7e6d8454a4
3 changed files with 9 additions and 2 deletions
@ -1,2 +1,2 @@ |
||||
project('c++ pch test', 'cpp') |
||||
exe = executable('prog', 'prog.cc', pch : 'pch/prog.hh') |
||||
exe = executable('prog', 'prog.cc', cpp_pch : ['pch/prog.hh', 'pch/prog_pch.cc']) |
||||
|
@ -0,0 +1,5 @@ |
||||
#if !defined(_MSC_VER) |
||||
#error "This file is only for use with MSVC." |
||||
#endif |
||||
|
||||
#include "prog.hh" |
Loading…
Reference in new issue