diff options
author | H. İbrahim Güngör <igungor@gmail.com> | 2016-01-08 12:07:35 +0200 |
---|---|---|
committer | H. İbrahim Güngör <igungor@gmail.com> | 2016-01-08 12:07:35 +0200 |
commit | 4b4fca57042535e176f061823382c26818d3d995 (patch) | |
tree | 03991a099b2f1b34051b12f4c219f39b7e1dfc85 /bindings | |
parent | 5f6c8472451d321d3d55977444c84bf676657992 (diff) |
bindings/go: Use static libraries for Go bindings
Search for the static libraries in their relative paths instead of
symlinking into the build directory.
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/go/quackle.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/go/quackle.go b/bindings/go/quackle.go index 66323a0..6c40a84 100644 --- a/bindings/go/quackle.go +++ b/bindings/go/quackle.go @@ -2,5 +2,5 @@ package quackle // #cgo CXXFLAGS: -I../.. // #cgo pkg-config: QtCore -// #cgo LDFLAGS: -L${SRCDIR} -lquackle -lquackleio -lQtCore +// #cgo LDFLAGS: -L${SRCDIR}/../../lib/release -L${SRCDIR}/../../quackleio/lib/release -lquackle -lquackleio -lQtCore import "C" |