Added test case for Windows cpp building.
This commit is contained in:
parent
aac4fd1603
commit
15ff1e4e48
|
@ -0,0 +1,4 @@
|
|||
project('wincxx', 'cxx')
|
||||
|
||||
exe = executable('prog', 'prog.cpp')
|
||||
add_test('wincxx', exe)
|
|
@ -0,0 +1,7 @@
|
|||
#include<windows.h>
|
||||
|
||||
class Foo;
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue