You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
- Add GORM v1.25.12 with MySQL and SQLite drivers - Add Viper v1.19.0 for configuration management - Add UUID package for GORM model IDs - Update vendor directory with new dependencies - Update Go module requirements and checksums 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
660 B
Go
23 lines
660 B
Go
// Copyright (C) 2019 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.
|
|
|
|
//go:build libsqlite3
|
|
// +build libsqlite3
|
|
|
|
package sqlite3
|
|
|
|
/*
|
|
#cgo CFLAGS: -DUSE_LIBSQLITE3
|
|
#cgo linux LDFLAGS: -lsqlite3
|
|
#cgo darwin,amd64 LDFLAGS: -L/usr/local/opt/sqlite/lib -lsqlite3
|
|
#cgo darwin,amd64 CFLAGS: -I/usr/local/opt/sqlite/include
|
|
#cgo darwin,arm64 LDFLAGS: -L/opt/homebrew/opt/sqlite/lib -lsqlite3
|
|
#cgo darwin,arm64 CFLAGS: -I/opt/homebrew/opt/sqlite/include
|
|
#cgo openbsd LDFLAGS: -lsqlite3
|
|
#cgo solaris LDFLAGS: -lsqlite3
|
|
#cgo windows LDFLAGS: -lsqlite3
|
|
*/
|
|
import "C"
|