| 1 | module 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 |