diff options
author | Philip O'Toole <philip.otoole@yahoo.com> | 2016-02-23 01:18:14 -0500 |
---|---|---|
committer | Philip O'Toole <philip.otoole@yahoo.com> | 2016-02-23 01:18:14 -0500 |
commit | 3e97a4ca68500045276a2ba7051740bd53e40d06 (patch) | |
tree | d984cc8023dffd95fd37fc6ed293ba80f973592a /sqlite3_libsqlite3.go | |
parent | Merge pull request #134 from antoine-lizee/patch-1 (diff) | |
parent | Merge pull request #267 from ianlancetaylor/go16 (diff) | |
download | golite-3e97a4ca68500045276a2ba7051740bd53e40d06.tar.gz golite-3e97a4ca68500045276a2ba7051740bd53e40d06.tar.xz |
Merge pull request #1 from mattn/master
Bring master up-to-date
Diffstat (limited to 'sqlite3_libsqlite3.go')
-rw-r--r-- | sqlite3_libsqlite3.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sqlite3_libsqlite3.go b/sqlite3_libsqlite3.go new file mode 100644 index 0000000..0c4c557 --- /dev/null +++ b/sqlite3_libsqlite3.go @@ -0,0 +1,13 @@ +// 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. +// +build libsqlite3 + +package sqlite3 + +/* +#cgo CFLAGS: -DUSE_LIBSQLITE3 +#cgo LDFLAGS: -lsqlite3 +*/ +import "C" |