Project

General

Profile

0001-build-system-improvement.patch

johu, 08/06/2010 03:05 AM

View differences:

CMakeLists.txt
58 58
  option(DEPLOY        "Mac OS X only! Adds required libs to bundle resources and create a dmg. Note: requires Qt to be built with 10.4u SDK" OFF)
59 59
endif(APPLE)
60 60

  
61
# Disable all gui build options on core only build
62
if(NOT WANT_MONO AND NOT WANT_QTCLIENT)
63
  if(WITH_KDE)
64
    set(WITH_KDE OFF)
65
  endif(WITH_KDE)
66
  if(WITH_PHONON)
67
    set(WITH_PHONON OFF)
68
  endif(WITH_PHONON)
69
  if(WITH_WEBKIT)
70
    set(WITH_WEBKIT OFF)
71
  endif(WITH_WEBKIT)
72
  if(WITH_LIBINDICATE)
73
    set(WITH_LIBINDICATE OFF)
74
  endif(WITH_LIBINDICATE)
75
endif(NOT WANT_MONO AND NOT WANT_QTCLIENT)
76

  
61 77
# Default to embedding data in the static case
62 78
if(STATIC OR WIN32)
63 79
  set(EMBED_DEFAULT ON)
64
-