blob: 1fbb15ac7aeaf5cf75c3eb0adbd31f24c897e266 [file] [log] [blame]
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
)
)