Add support for meson build system
[tinc] / src / mingw / meson.build
1 win_common_libs = ['ws2_32', 'iphlpapi', 'winpthread']
2
3 if opt_harden
4   win_common_libs += 'ssp'
5 endif
6
7 foreach libname : win_common_libs
8   deps_common += cc.find_library(libname)
9 endforeach
10
11 src_tincd += files('device.c')
12
13 cdata.set('HAVE_MINGW', 1)
14