File: SetupMain.hs

package info (click to toggle)
haskell-svgcairo 0.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 112 kB
  • ctags: 4
  • sloc: haskell: 512; makefile: 14; ansic: 3
file content (12 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
-- The real Setup file for a Gtk2Hs package (invoked via the SetupWrapper).
-- It contains only adjustments specific to this package,
-- all Gtk2Hs-specific boilerplate is kept in Gtk2HsSetup.hs
-- which should be kept identical across all packages.
--
import Gtk2HsSetup ( gtk2hsUserHooks, checkGtk2hsBuildtools )
import Distribution.Simple ( defaultMainWithHooks )

main = do
  checkGtk2hsBuildtools ["gtk2hsC2hs", "gtk2hsTypeGen", "gtk2hsHookGenerator"]
  defaultMainWithHooks gtk2hsUserHooks