summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. İbrahim Güngör <igungor@gmail.com>2016-01-08 12:07:35 +0200
committerH. İbrahim Güngör <igungor@gmail.com>2016-01-08 12:07:35 +0200
commit4b4fca57042535e176f061823382c26818d3d995 (patch)
tree03991a099b2f1b34051b12f4c219f39b7e1dfc85
parent5f6c8472451d321d3d55977444c84bf676657992 (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.
-rw-r--r--bindings/go/quackle.go2
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"