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.
|
2012-10-28 06:58:40 +04:00
|
|
|
// +build !windows
|
|
|
|
|
2013-06-21 00:52:38 +04:00
|
|
|
package sqlite3
|
2012-10-28 06:58:40 +04:00
|
|
|
|
|
|
|
/*
|
2013-08-30 17:43:00 +04:00
|
|
|
#cgo CFLAGS: -I.
|
2013-08-29 06:06:36 +04:00
|
|
|
#cgo linux LDFLAGS: -ldl
|
2013-12-23 02:20:40 +04:00
|
|
|
#cgo CFLAGS: -DSQLITE_ENABLE_RTREE
|
2012-10-28 06:58:40 +04:00
|
|
|
*/
|
|
|
|
import "C"
|