Changeset 2319
- Timestamp:
- 01/23/08 13:17:06 (12 months ago)
- Location:
- vidalia/trunk
- Files:
-
- 2 modified
-
CMakeLists.txt (modified) (1 diff)
-
src/vidalia/CMakeLists.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vidalia/trunk/CMakeLists.txt
r2230 r2319 56 56 if (HAVE_QSYSTEMTRAYICON_H) 57 57 option(WITH_QSYSTEMTRAYICON "Use Qt's tray icon implementation." ON) 58 if (NOT WITH_QSYSTEMTRAYICON)58 if (NOT USE_QSYSTEMTRAYICON) 59 59 ## Disable the use of QSystemTrayIcon 60 60 set(HAVE_QSYSTEMTRAYICON_H "") 61 endif(NOT WITH_QSYSTEMTRAYICON)61 endif(NOT USE_QSYSTEMTRAYICON) 62 62 endif(HAVE_QSYSTEMTRAYICON_H) 63 63 endif(NOT APPLE) -
vidalia/trunk/src/vidalia/CMakeLists.txt
r2307 r2319 153 153 set(vidalia_SRCS ${vidalia_SRCS} tray/trayicon.cpp) 154 154 qt4_wrap_cpp(vidalia_SRCS tray/trayicon.h) 155 if( HAVE_QSYSTEMTRAYICON_HAND NOT APPLE)155 if(USE_QSYSTEMTRAYICON AND NOT APPLE) 156 156 ## Use Qt's QSystemTrayIcon implementation 157 157 set(vidalia_SRCS ${vidalia_SRCS} tray/trayicon_qt.cpp) 158 158 qt4_wrap_cpp(vidalia_SRCS tray/trayicon_qt.h) 159 else( HAVE_QSYSTEMTRAYICON_HAND NOT APPLE)159 else(USE_QSYSTEMTRAYICON AND NOT APPLE) 160 160 ## Use our custom tray icon implementation 161 161 if(WIN32) … … 171 171 endif(APPLE) 172 172 endif(WIN32) 173 endif( HAVE_QSYSTEMTRAYICON_HAND NOT APPLE)173 endif(USE_QSYSTEMTRAYICON AND NOT APPLE) 174 174 175 175 ## Main Vidalia sources
