2019-11-18 18:03:31 +09:00
|
|
|
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
2015-06-12 13:26:42 +09:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2018-05-27 00:05:45 +02:00
|
|
|
|
2015-06-12 13:26:42 +09:00
|
|
|
// +build libsqlite3
|
|
|
|
|
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -DUSE_LIBSQLITE3
|
2016-04-18 19:58:56 +08:00
|
|
|
#cgo linux LDFLAGS: -lsqlite3
|
|
|
|
#cgo darwin LDFLAGS: -L/usr/local/opt/sqlite/lib -lsqlite3
|
2019-08-19 11:22:53 +01:00
|
|
|
#cgo darwin CFLAGS: -I/usr/local/opt/sqlite/include
|
2018-05-30 15:44:54 +02:00
|
|
|
#cgo openbsd LDFLAGS: -lsqlite3
|
2017-08-30 13:19:01 +09:00
|
|
|
#cgo solaris LDFLAGS: -lsqlite3
|
2020-08-25 13:56:34 +09:00
|
|
|
#cgo windows LDFLAGS: -lsqlite3
|
2015-06-12 13:26:42 +09:00
|
|
|
*/
|
|
|
|
import "C"
|