blob: 1fbb15ac7aeaf5cf75c3eb0adbd31f24c897e266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
project('threads', 'cpp', 'c',
default_options : ['cpp_std=c++11'])
threaddep = dependency('threads')
test('cppthreadtest',
executable('cppthreadprog', 'threadprog.cpp',
dependencies : threaddep
)
)
test('cthreadtest',
executable('cthreadprog', 'threadprog.c',
dependencies : threaddep
)
)
|