mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-09-28 12:33:33 +02:00
18 lines
352 B
Bash
18 lines
352 B
Bash
#!/bin/bash
|
|
|
|
cd `dirname $0`
|
|
cat > mapnik_config.go <<EOF
|
|
package mapnik
|
|
|
|
// THIS FILE IS AUTO GENERATED BY go generate !DO NOT EDIT!
|
|
|
|
// #cgo CXXFLAGS: $(mapnik-config --cflags)
|
|
// #cgo LDFLAGS: $(mapnik-config --libs) -lboost_system
|
|
import "C"
|
|
|
|
const (
|
|
fontPath = "$(mapnik-config --fonts)"
|
|
pluginPath = "$(mapnik-config --input-plugins)"
|
|
)
|
|
EOF
|
|
|