Changeset 2334 for vidalia/trunk/CMakeLists.txt
- Timestamp:
- 01/28/08 21:33:38 (10 months ago)
- Files:
-
- 1 modified
-
vidalia/trunk/CMakeLists.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vidalia/trunk/CMakeLists.txt
r2327 r2334 68 68 ## Check for QSslSocket 69 69 check_include_file_cxx("qsslsocket.h" HAVE_QSSLSOCKET_H) 70 if (HAVE_QSSLSOCKET_H)70 if (HAVE_QSSLSOCKET_H) 71 71 check_symbol_exists(QT_NO_OPENSSL "QtGlobal" QT_NO_SSL_SUPPORT) 72 if (NOT QT_NO_SSL_SUPPORT)72 if (NOT QT_NO_SSL_SUPPORT) 73 73 option(USE_QSSLSOCKET "Use Qt's QSslSocket for GeoIP lookups." ON) 74 74 endif(NOT QT_NO_SSL_SUPPORT) 75 75 endif(HAVE_QSSLSOCKET_H) 76 if (USE_QSSLSOCKET) 77 if (MSVC OR UNIX) 78 include(${CMAKE_SOURCE_DIR}/cmake/FindOpenSSL.cmake) 79 endif(MSVC OR UNIX) 80 endif(USE_QSSLSOCKET) 76 81 77 82 ## Write out a configuration file … … 87 92 add_subdirectory(pkg) 88 93 89 ## The 'confclean' target removes cached CMake configuration information90 if (WIN32)91 set(RM_CMD del)92 else (WIN32)93 set(RM_CMD rm)94 endif(WIN32)95 add_custom_target(confclean ${RM_CMD} CMakeCache.txt)96
