File: SetupMain.hs

package info (click to toggle)
haskell-glade 0.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 424 kB
  • sloc: haskell: 1,688; makefile: 42
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