summaryrefslogtreecommitdiffstats
path: root/test cases/wasm/2 threads/meson.build
blob: cb682b87720146f095609c50ecc234a4745d025b (plain)
1
2
3
4
5
6
7
8
9
10
project(
  'threads',
  'c', 'cpp',
  default_options : ['cpp_std=c++11'],
)

dep_threads = dependency('threads')

executable('threads-c', 'threads.c', dependencies : dep_threads)
executable('threads-c++', 'threads.cpp', dependencies : dep_threads)