~midori/midori/trunk

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: gue5t
  • Date: 2014-03-04 07:48:13 UTC
  • mto: This revision was merged to the branch mainline in revision 6585.
  • Revision ID: gue5t@midori.launchpad-20140304074813-kxu2exrw21ddjg6n
Implement GIR build support

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
option(USE_ZEITGEIST "Zeitgeist history integration" ON)
160
160
option(USE_GRANITE "Fancy notebook and pop-overs" OFF)
161
161
option(USE_APIDOCS "API documentation" OFF)
 
162
option(USE_GIR "Generate GObject Introspection bindings" ON)
162
163
option(EXTRA_WARNINGS "Additional compiler warnings" OFF)
163
164
 
164
165
# GTK+3 is implied here, whether set or not
288
289
if (USE_APIDOCS)
289
290
    add_subdirectory (docs/api)
290
291
endif ()
 
292
if (USE_GIR)
 
293
    add_subdirectory (gir)
 
294
endif ()