go-sqlite3/sqlite3_windows.go

13 lines
361 B
Go
Raw Normal View History

2014-08-18 11:56:31 +04:00
// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package sqlite3
2012-10-28 06:58:40 +04:00
/*
#cgo CFLAGS: -I. -fno-stack-check -fno-stack-protector -mno-stack-arg-probe
2014-03-19 08:22:18 +04:00
#cgo LDFLAGS: -lmingwex -lmingw32 -lmsvcr100
2013-12-23 02:20:40 +04:00
#cgo CFLAGS: -DSQLITE_ENABLE_RTREE
2012-10-28 06:58:40 +04:00
*/
import "C"