v2 / vlib / db / mssql / _cdef_windows.c.v
12 lines · 9 sloc · 416 bytes · 64558df76488d72a712c84feb527797862bfeb79
Raw
1module mssql
2
3// mssql module does not support tcc on windows
4
5// odbc32 lib comes with windows sdk and does not need to be installed separately.
6// v builder for msvc can resolve the sdk includes search path, so no need to repeat here.
7#flag windows -lodbc32
8
9// Special handling of sql headers on windows.
10// Source is in v third party folder.
11#flag windows -I@VEXEROOT/thirdparty/mssql/include
12#include <mssql.h>
13