github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/server/camlistored/option_sqlite.go (about) 1 // +build with_sqlite 2 3 // If the "with_sqlite" build tag is specified, the sqlite index driver 4 // is also built & loaded: 5 // 6 // go install -tags=with_sqlite camlistore.org/server/camlistored 7 // 8 // This is an option because the sqlite3 SQL driver requires cgo & the 9 // SQLite3 C library available. We want it to still be possible to 10 // have a pure Go server too. 11 12 package main 13 14 import ( 15 _ "camlistore.org/pkg/index/sqlite" 16 )