v/vlib/mssql/_cdef_windows.c.v

13 lines
416 B
V
Raw Permalink Normal View History

2021-05-31 13:08:31 +02:00
module mssql
2021-06-07 13:02:15 +02:00
// mssql module does not support tcc on windows
// odbc32 lib comes with windows sdk and does not need to be installed separately.
// v builder for msvc can resolve the sdk includes search path, so no need to repeat here.
#flag windows -lodbc32
// Special handling of sql headers on windows.
// Source is in v third party folder.
#flag windows -I@VEXEROOT/thirdparty/mssql/include
#include <mssql.h>