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.
|
2014-08-18 12:00:59 +04:00
|
|
|
|
2013-06-21 00:52:38 +04:00
|
|
|
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"
|