2021-09-03 08:40:31 -05:00
|
|
|
//go:build !static
|
2016-11-19 08:48:39 -06:00
|
|
|
// +build !static
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo pkg-config: libgit2
|
2025-01-05 01:21:58 -06:00
|
|
|
#cgo CFLAGS: -DLIBGIT2_DYNAMIC -I/opt/libgit2/include
|
|
|
|
#cgo LDFLAGS: -L/opt/libgit2 -lgit2
|
2020-06-21 17:40:52 -05:00
|
|
|
#include <git2.h>
|
2016-11-19 08:48:39 -06:00
|
|
|
|
2025-01-05 01:21:58 -06:00
|
|
|
|
2016-11-19 08:48:39 -06:00
|
|
|
*/
|
|
|
|
import "C"
|