Merge branch 'smtp-read-banner'
[trojita.git] / CMakeLists.txt
blob16a5c2bb4478cd73321c52bb831cf702fb0729cc
1 project(trojita)
2 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
4 # Qt5's qt5_use_modules need 2.8.9+
5 # On win32, we need QtMain linking, which means 2.8.11+
6 # EL7 ships 2.8.11, Debian 8 ships 3.0.2, and Ubuntu 14.04 LTS has 2.8.12
7 cmake_minimum_required(VERSION 2.8.11)
8 cmake_policy(SET CMP0020 NEW)
10 if(POLICY CMP0054)
11     # Silence warnings in TrojitaOption.cmake; we are fine with only doing the
12     # expansion by hand
13     cmake_policy(SET CMP0054 NEW)
14 endif()
16 if(POLICY CMP0043)
17     # We make use of CMAKE_CXXFLAGS_DEBUG...
18     cmake_policy(SET CMP0043 OLD)
19 endif()
21 if(CMAKE_VERSION VERSION_LESS "3.1")
22     # If you aren't using and old Linux with an old GCC and old CMake, please just upgrade.
23     set(CMAKE_CXX_FLAGS "--std=c++11 ${CMAKE_CXX_FLAGS}")
24 else()
25     set(CMAKE_CXX_STANDARD 11)
26     set(CMAKE_CXX_STANDARD_REQUIRED ON)
27 endif()
29 # Set a default build type if none was specified. This was shamelessly stolen
30 # from VTK's cmake setup because these guys produce both CMake and a project that
31 # manipulates this variable, and the web is full of posts where people say that
32 # it is apparently evil to just set the build type in a way an earlier version of
33 # this patch did. Oh, and the location of this check/update matters, apparently.
35 # Yes, this is just plain crazy.
36 if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
37     message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.")
38     set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build." FORCE)
39     # Set the possible values of build type for cmake-gui
40     set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
41 endif()
43 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
45 include(TrojitaOption)
47 trojita_option(WITH_DESKTOP "Build desktop version" ON)
48 trojita_option(WITH_DBUS "Build with DBus library" AUTO)
49 trojita_option(WITH_RAGEL "Build with Ragel library" AUTO)
50 trojita_option(WITH_ZLIB "Build with zlib library" AUTO)
51 trojita_option(WITH_SHARED_PLUGINS "Enable shared dynamic plugins" ON)
52 trojita_option(BUILD_TESTING "Build tests" ON)
53 trojita_option(WITH_MIMETIC "Build with client-side MIME parsing" AUTO)
54 trojita_option(WITH_GPGMEPP "Use GpgME's native C++ bindings" AUTO)
55 trojita_option(WITH_KF5_GPGMEPP "Use legacy discontinued GpgME++ library from KDE frameworks" AUTO)
57 if(WIN32)
58     trojita_option(WITH_NSIS "Build Windows NSIS installer" AUTO "WITH_DESKTOP")
59 endif()
61 if(UNIX AND NOT APPLE)
62     set(QTKEYCHAIN_DEPENDS ";WITH_DBUS")
63 else()
64     set(QTKEYCHAIN_DEPENDS "")
65 endif()
67 find_package(Qt5Core 5.2 REQUIRED)
68 find_package(Qt5Gui REQUIRED)
69 find_package(Qt5Network REQUIRED)
70 find_package(Qt5Sql REQUIRED)
71 find_package(Qt5WebKitWidgets REQUIRED)
72 find_package(Qt5Widgets REQUIRED)
73 find_package(Qt5LinguistTools)
74 find_package(Qt5Svg REQUIRED)
75 trojita_find_package(Qt5DBus "" "http://qt-project.org" "Qt5 D-Bus support" "Needed for IPC and for some plugins" WITH_DBUS)
76 trojita_find_package(Qt5Test "" "http://qt-project.org" "Qt5 QTest library" "Needed for automated tests" BUILD_TESTING)
77 if(Qt5LinguistTools_FOUND)
78     find_package(Qt5LinguistForTrojita)
79 endif()
81 trojita_plugin_option(WITH_ABOOKADDRESSBOOK_PLUGIN "Build AbookAddressbook plugin" STATIC)
82 trojita_plugin_option(WITH_CLEARTEXT_PLUGIN "Build Cleartext password plugin" STATIC)
83 trojita_plugin_option(WITH_QTKEYCHAIN_PLUGIN "Build Qtkeychain password plugin" "${QTKEYCHAIN_DEPENDS}")
85 trojita_find_package(Git "" "" "" "")
87 trojita_find_package(Mimetic "" "http://www.codesink.org/mimetic_mime_library.html" "C++ MIME Library" "Required for client-side MIME parsing" WITH_MIMETIC)
88 trojita_find_package(Gpgmepp "1.8.0" "https://gnupg.org/related_software/gpgme/index.html" "C++/Qt bindings for gpgme" "Needed for encrypted/signed e-mails" WITH_GPGMEPP)
89 if(NOT WITH_GPGMEPP)
90     trojita_find_package(KF5Gpgmepp "" "https://commits.kde.org/gpgmepp?path=/" "C++ bindings for gpgme" "Needed for encrypted/signed e-mails" WITH_KF5_GPGMEPP)
91     trojita_option(WITH_CRYPTO_MESSAGES "Enable support for encrypted messages" AUTO "WITH_MIMETIC;WITH_KF5_GPGMEPP")
92 else()
93     trojita_option(WITH_CRYPTO_MESSAGES "Enable support for encrypted messages" AUTO "WITH_MIMETIC;WITH_GPGMEPP")
94 endif()
96 if(WIN32)
97     trojita_find_package(MakeNSIS "" "http://nsis.sourceforge.net" "Nullsoft Scriptable Install System" "Needed for building Windows installer" WITH_NSIS)
98 endif()
100 # Add support for Mingw RC compiler
101 if(WIN32)
102     enable_language(RC)
103     include(CMakeDetermineRCCompiler)
105     if(MINGW)
106         set(CMAKE_RC_COMPILER_INIT windres)
107         set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> <FLAGS> -O coff <DEFINES> -I${CMAKE_CURRENT_BINARY_DIR} -i <SOURCE> -o <OBJECT>")
108     endif()
109 endif()
111 trojita_find_package(Qt5Keychain QUIET "https://github.com/frankosterfeld/qtkeychain" "QtKeychain library (Qt5 version)" "Needed for QtKeychain password plugin" WITH_QTKEYCHAIN_PLUGIN)
112 if(Qt5Keychain_FOUND OR QtKeychain_FOUND)
113     message(STATUS "Found QtKeychain library (includes at ${QTKEYCHAIN_INCLUDE_DIRS}, lib at ${QTKEYCHAIN_LIBRARIES})")
114 else()
115     message(STATUS "Could not find QtKeychain library")
116 endif()
118 if(NOT DEFINED CMAKE_INSTALL_LIBDIR)
119     set(CMAKE_INSTALL_LIBDIR "lib${LIB_SUFFIX}")
120 endif()
121 mark_as_advanced(CMAKE_INSTALL_LIBDIR)
123 if(NOT CMAKE_INSTALL_PLUGIN_DIR)
124     set(CMAKE_INSTALL_PLUGIN_DIR "${CMAKE_INSTALL_LIBDIR}/trojita")
125 endif()
126 mark_as_advanced(CMAKE_INSTALL_PLUGIN_DIR)
128 if(NOT PLUGIN_DIR)
129     if(IS_ABSOLUTE ${CMAKE_INSTALL_PLUGIN_DIR})
130         set(PLUGIN_DIR "${CMAKE_INSTALL_PLUGIN_DIR}")
131     else()
132         set(PLUGIN_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_PLUGIN_DIR}")
133     endif()
134 endif()
135 mark_as_advanced(PLUGIN_DIR)
137 include(GNUInstallDirs)
139 # When manipulating CXXFLAGS, we put the user's CXXFLAGS *after* that so that they take priority.
140 if(MSVC)
141     # See below for some reationale for these optimizations
142     set(CMAKE_CXX_FLAGS "/O2 ${CMAKE_CXX_FLAGS}")
144     # We have no information about the warnings and their usefullness. Reports are welcome.
145     # We might enable warnings on MSVC in future.
146 else()
147     # -Werror is not a default for sanity reasons (one cannot know what warnings a future compiler
148     # might bring along), but it's a default in debug mode. The idea is that developers should care
149     # about a warning-free build, and that this is easier than messing with yet another configure option.
150     set(CMAKE_CXX_FLAGS_DEBUG "-Werror ${CMAKE_CXX_FLAGS_DEBUG}")
151     # Also see CMP0043...
153     # Optimizations are enabled unconditionally because they make a big difference in the speed of the
154     # resulting binaries, and that it is better to allow an opt-out from them by adjusting CXXFLAGS through
155     # an env var at cmake time if needed.
156     # The reason for not manipulating just CMAKE_CXX_FLAGS_DEBUG is that unrecognized build types ("DebugFull")
157     # should still benefit from these optimizations. Yup, it would be even better if CMake did a sane thing
158     # and warned when users set an unrecognized and unused build type, but that just isn't the case.
159     set(CMAKE_CXX_FLAGS "-O2 ${CMAKE_CXX_FLAGS}")
161     # Build warnings are useful tools (and Trojita should be warning-free anyway), enable them on all
162     # configurations. They are warnings, not errors.
163     set(CMAKE_CXX_FLAGS "-Wall -Wsign-compare ${CMAKE_CXX_FLAGS}")
164 endif()
166 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
167 # The following is required so that the moc_*.cpp and ui_*.h are found
168 include_directories(${CMAKE_CURRENT_BINARY_DIR})
170 add_definitions(-DQT_STRICT_ITERATORS)
171 add_definitions(-DQT_USE_QSTRINGBUILDER)
172 add_definitions(-DQT_USE_FAST_OPERATOR_PLUS)
173 add_definitions(-DQT_USE_FAST_CONCATENATION)
175 if(NOT MSVC)
176   # We're using C++11's threading features (std::async in particular), and that requires "some threading". With GCC and
177   # Clang, this is implemented through the -pthread build flag. Without using these bits, linking fails on Fedora 23,
178   # and this is apparently a slightly different failure than the Kf5::Gpgmepp-pthread one in commit
179   # 12e41101070f7073caec653185c0504763672ee7.
180   #
181   # Apparently, there's been various methods on how to enable this in the most-cmakeish-way throughout the years, with
182   # cmake-3.1+ supporting some magic linking via the Threads::Threads option on a per-library basis. However, I am not
183   # really looking into that wonderful fun of mixing -pthread and non-pthread translation units, so let's use a big
184   # hammer and set it unconditionally on platforms which use it anyway.
185   #
186   # And because we also support MinGW and its `windres` compiler, we have to avoid passing -pthread to *that* thing, so,
187   # well, let's cheat and put it into the CXXFLAGS.
188   set(CMAKE_CXX_FLAGS "-pthread ${CMAKE_CXX_FLAGS}")
189 endif()
191 # Make sure that plugins not export all symbols, only that which are explicitly marked
192 include(GenerateExportHeader)
193 add_compiler_export_flags()
195 set(CMAKE_AUTOMOC True)
197 trojita_find_package(RagelForTrojita "" "" "" "" WITH_RAGEL)
198 trojita_find_package(ZLIB "" "" "" "" WITH_ZLIB)
200 if(WITH_MIMETIC)
201   set(TROJITA_HAVE_MIMETIC True)
202 else()
203   set(TROJITA_HAVE_MIMETIC False)
204 endif()
206 if(WITH_GPGMEPP OR WITH_KF5_GPGMEPP)
207   set(TROJITA_HAVE_GPGMEPP True)
208 else()
209   set(TROJITA_HAVE_GPGMEPP False)
210 endif()
212 if(WITH_CRYPTO_MESSAGES)
213   set(TROJITA_HAVE_CRYPTO_MESSAGES True)
214 else()
215   set(TROJITA_HAVE_CRYPTO_MESSAGES False)
216 endif()
218 if(WITH_ZLIB)
219     set(TROJITA_HAVE_ZLIB True)
220     message(STATUS "Support for COMPRESS=DEFLATE enabled")
221 else()
222     set(TROJITA_HAVE_ZLIB False)
223     message(STATUS "Disabling COMPRESS=DEFLATE, zlib is not available")
224 endif()
226 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/configure.cmake.in
227     ${CMAKE_CURRENT_BINARY_DIR}/configure.cmake.h)
228 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/configure-plugins.cmake.in
229     ${CMAKE_CURRENT_BINARY_DIR}/configure-plugins.cmake.h)
231 feature_summary(FATAL_ON_MISSING_REQUIRED_PACKAGES INCLUDE_QUIET_PACKAGES DESCRIPTION "\n" WHAT ALL)
233 set(path_Common ${CMAKE_CURRENT_SOURCE_DIR}/src/Common)
234 set(libCommon_SOURCES
235     ${path_Common}/Application.cpp
236     ${path_Common}/ConnectionId.cpp
237     ${path_Common}/DeleteAfter.cpp
238     ${path_Common}/FileLogger.cpp
239     ${path_Common}/MetaTypes.cpp
240     ${path_Common}/Paths.cpp
241     ${path_Common}/SettingsNames.cpp
242     ${path_Common}/StashingReverseIterator.h
245 set(path_Plugins ${CMAKE_CURRENT_SOURCE_DIR}/src/Plugins)
246 set(libPlugins_SOURCES
247     ${path_Plugins}/AddressbookPlugin.cpp
248     ${path_Plugins}/PasswordPlugin.cpp
249     ${path_Plugins}/PluginJob.cpp
250     ${path_Plugins}/PluginManager.cpp
253 set(path_UiUtils ${CMAKE_CURRENT_SOURCE_DIR}/src/UiUtils)
254 set(libUiUtils_SOURCES
255     ${path_UiUtils}/Color.cpp
256     ${path_UiUtils}/Formatting.cpp
257     ${path_UiUtils}/IconLoader.cpp
258     ${path_UiUtils}/PartLoadingOptions.h
259     ${path_UiUtils}/PartVisitor.h
260     ${path_UiUtils}/PartWalker.h
261     ${path_UiUtils}/PartWalker_impl.h
262     ${path_UiUtils}/PasswordWatcher.cpp
263     ${path_UiUtils}/PlainTextFormatter.cpp
264     ${path_UiUtils}/QaimDfsIterator.cpp
267 set(path_IPC ${CMAKE_CURRENT_SOURCE_DIR}/src/IPC)
269 if(WITH_DBUS)
270     set(libIPC_SOURCES
271         ${path_IPC}/DBusInterface.cpp
272         ${path_IPC}/MainWindowBridge.cpp
273     )
274 else()
275     set(libIPC_SOURCES
276         ${path_IPC}/None.cpp
277     )
278 endif()
280 set(path_Composer ${CMAKE_CURRENT_SOURCE_DIR}/src/Composer)
281 set(libComposer_SOURCES
282     ${path_Composer}/ComposerAttachments.cpp
283     ${path_Composer}/Mailto.cpp
284     ${path_Composer}/MessageComposer.cpp
285     ${path_Composer}/QuoteText.cpp
286     ${path_Composer}/Recipients.cpp
287     ${path_Composer}/ReplaceSignature.cpp
288     ${path_Composer}/SenderIdentitiesModel.cpp
289     ${path_Composer}/SubjectMangling.cpp
290     ${path_Composer}/Submission.cpp
293 set(path_MSA ${CMAKE_CURRENT_SOURCE_DIR}/src/MSA)
294 set(libMSA_SOURCES
295     ${path_MSA}/AbstractMSA.cpp
296     ${path_MSA}/Account.cpp
297     ${path_MSA}/FakeMSA.cpp
298     ${path_MSA}/ImapSubmit.cpp
299     ${path_MSA}/SMTP.cpp
300     ${path_MSA}/Sendmail.cpp
303 set(path_Streams ${CMAKE_CURRENT_SOURCE_DIR}/src/Streams)
304 set(libStreams_SOURCES
305     ${path_Streams}/DeletionWatcher.cpp
306     ${path_Streams}/FakeSocket.cpp
307     ${path_Streams}/IODeviceSocket.cpp
308     ${path_Streams}/Socket.cpp
309     ${path_Streams}/SocketFactory.cpp
312 set(path_Cryptography ${CMAKE_CURRENT_SOURCE_DIR}/src/Cryptography)
313 set(libCryptography_SOURCES
314     ${path_Cryptography}/MessageModel.cpp
315     ${path_Cryptography}/MessagePart.cpp
316     ${path_Cryptography}/PartReplacer.cpp
318 if(WITH_MIMETIC)
319     set(libCryptography_SOURCES
320         ${libCryptography_SOURCES}
321         ${path_Cryptography}/LocalMimeParser.cpp
322         ${path_Cryptography}/MimeticUtils.cpp
323     )
324 endif()
325 if(WITH_CRYPTO_MESSAGES)
326     set(libCryptography_SOURCES
327         ${libCryptography_SOURCES}
328         ${path_Cryptography}/GpgMe++.cpp
329     )
330 endif()
332 if(WITH_ZLIB)
333     set(libStreams_SOURCES ${libStreams_SOURCES}
334         ${path_Streams}/3rdparty/rfc1951.cpp)
335 endif()
337 set(path_DesktopGui ${CMAKE_CURRENT_SOURCE_DIR}/src/Gui)
338 set(libDesktopGui_SOURCES
339     ${path_DesktopGui}/AddressRowWidget.cpp
340     ${path_DesktopGui}/AttachmentView.cpp
341     ${path_DesktopGui}/CompleteMessageWidget.cpp
342     ${path_DesktopGui}/ComposeWidget.cpp
343     ${path_DesktopGui}/ComposerAttachmentsList.cpp
344     ${path_DesktopGui}/ComposerTextEdit.cpp
345     ${path_DesktopGui}/EmbeddedWebView.cpp
346     ${path_DesktopGui}/EnvelopeView.cpp
347     ${path_DesktopGui}/ExternalElementsWidget.cpp
348     ${path_DesktopGui}/FindBar.cpp
349     ${path_DesktopGui}/FindBarMixin.cpp
350     ${path_DesktopGui}/FlowLayout.cpp
351     ${path_DesktopGui}/FromAddressProxyModel.cpp
352     ${path_DesktopGui}/LineEdit.cpp
353     ${path_DesktopGui}/LoadablePartWidget.cpp
354     ${path_DesktopGui}/MailBoxTreeView.cpp
355     ${path_DesktopGui}/MessageHeadersWidget.cpp
356     ${path_DesktopGui}/MessageListWidget.cpp
357     ${path_DesktopGui}/MessageSourceWidget.cpp
358     ${path_DesktopGui}/MessageView.cpp
359     ${path_DesktopGui}/MsgListView.cpp
360     ${path_DesktopGui}/OnePanelAtTimeWidget.cpp
361     ${path_DesktopGui}/OneEnvelopeAddress.cpp
362     ${path_DesktopGui}/OverlayWidget.cpp
363     ${path_DesktopGui}/PartWalker.cpp
364     ${path_DesktopGui}/PartWidget.cpp
365     ${path_DesktopGui}/PartWidgetFactoryVisitor.cpp
366     ${path_DesktopGui}/PasswordDialog.cpp
367     ${path_DesktopGui}/ProgressPopUp.cpp
368     ${path_DesktopGui}/ProtocolLoggerWidget.cpp
369     ${path_DesktopGui}/ReplaceCharValidator.cpp
370     ${path_DesktopGui}/SettingsDialog.cpp
371     ${path_DesktopGui}/SimplePartWidget.cpp
372     ${path_DesktopGui}/Spinner.cpp
373     ${path_DesktopGui}/TagListWidget.cpp
374     ${path_DesktopGui}/TagWidget.cpp
375     ${path_DesktopGui}/TaskProgressIndicator.cpp
376     ${path_DesktopGui}/UserAgentWebPage.cpp
377     ${path_DesktopGui}/Util.cpp
378     ${path_DesktopGui}/Window.cpp
379     ${path_DesktopGui}/ShortcutHandler/ShortcutConfigDialog.cpp
380     ${path_DesktopGui}/ShortcutHandler/ShortcutConfigWidget.cpp
381     ${path_DesktopGui}/ShortcutHandler/ShortcutHandler.cpp
383 set(libDesktopGui_UI
384     ${path_DesktopGui}/AboutDialog.ui
385     ${path_DesktopGui}/ComposeWidget.ui
386     ${path_DesktopGui}/CreateMailboxDialog.ui
387     ${path_DesktopGui}/EditIdentity.ui
388     ${path_DesktopGui}/PasswordDialog.ui
389     ${path_DesktopGui}/ProgressPopUp.ui
390     ${path_DesktopGui}/SettingsCachePage.ui
391     ${path_DesktopGui}/SettingsGeneralPage.ui
392     ${path_DesktopGui}/SettingsImapPage.ui
393     ${path_DesktopGui}/SettingsOutgoingPage.ui
394     ${path_DesktopGui}/ShortcutHandler/ShortcutConfigWidget.ui
396 set(libDesktopGui_RESOURCES
397     ${CMAKE_CURRENT_SOURCE_DIR}/src/icons.qrc
398     ${CMAKE_CURRENT_SOURCE_DIR}/src/license.qrc
401 set(libqwwsmtpclient_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/qwwsmtpclient/qwwsmtpclient.cpp)
403 set(libAppVersion_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/AppVersion/SetCoreApplication.cpp)
405 set(path_Imap ${CMAKE_CURRENT_SOURCE_DIR}/src/Imap)
406 set(libImap_SOURCES
407     ${path_Imap}/ConnectionState.cpp
408     ${path_Imap}/Encoders.cpp
409     ${path_Imap}/Exceptions.cpp
410     ${path_Imap}/Parser/3rdparty/kcodecs.cpp
411     ${path_Imap}/Parser/3rdparty/rfccodecs.cpp
413     ${path_Imap}/Parser/Command.cpp
414     ${path_Imap}/Parser/Data.cpp
415     ${path_Imap}/Parser/LowLevelParser.cpp
416     ${path_Imap}/Parser/MailAddress.cpp
417     ${path_Imap}/Parser/Message.cpp
418     ${path_Imap}/Parser/Parser.cpp
419     ${path_Imap}/Parser/Response.cpp
420     ${path_Imap}/Parser/Sequence.cpp
421     ${path_Imap}/Parser/ThreadingNode.cpp
423     ${path_Imap}/Network/FileDownloadManager.cpp
424     ${path_Imap}/Network/ForbiddenReply.cpp
425     ${path_Imap}/Network/MsgPartNetAccessManager.cpp
426     ${path_Imap}/Network/MsgPartNetworkReply.cpp
427     ${path_Imap}/Network/QQuickNetworkReplyWrapper.cpp
429     ${path_Imap}/Model/Cache.cpp
430     ${path_Imap}/Model/CombinedCache.cpp
431     ${path_Imap}/Model/DragAndDrop.cpp
432     ${path_Imap}/Model/DiskPartCache.cpp
433     ${path_Imap}/Model/DummyNetworkWatcher.cpp
434     ${path_Imap}/Model/FindInterestingPart.cpp
435     ${path_Imap}/Model/FlagsOperation.cpp
436     ${path_Imap}/Model/FullMessageCombiner.cpp
437     ${path_Imap}/Model/ImapAccess.cpp
438     ${path_Imap}/Model/MailboxFinder.cpp
439     ${path_Imap}/Model/MailboxMetadata.cpp
440     ${path_Imap}/Model/MailboxModel.cpp
441     ${path_Imap}/Model/MailboxTree.cpp
442     ${path_Imap}/Model/MemoryCache.cpp
443     ${path_Imap}/Model/Model.cpp
444     ${path_Imap}/Model/MsgListModel.cpp
445     ${path_Imap}/Model/NetworkWatcher.cpp
446     ${path_Imap}/Model/OneMessageModel.cpp
447     ${path_Imap}/Model/ParserState.cpp
448     ${path_Imap}/Model/PrettyMailboxModel.cpp
449     ${path_Imap}/Model/PrettyMsgListModel.cpp
450     ${path_Imap}/Model/SpecialFlagNames.cpp
451     ${path_Imap}/Model/SQLCache.cpp
452     ${path_Imap}/Model/SubtreeModel.cpp
453     ${path_Imap}/Model/SystemNetworkWatcher.cpp
454     ${path_Imap}/Model/TaskFactory.cpp
455     ${path_Imap}/Model/TaskPresentationModel.cpp
456     ${path_Imap}/Model/ThreadingMsgListModel.cpp
457     ${path_Imap}/Model/Utils.cpp
458     ${path_Imap}/Model/VisibleTasksModel.cpp
460     # The ModelWatcher is another debugging aid
461     ${path_Imap}/Model/ModelWatcher.cpp
463     ${path_Imap}/Model/kdeui-itemviews/kdescendantsproxymodel.cpp
465     ${path_Imap}/Tasks/AppendTask.cpp
466     ${path_Imap}/Tasks/CopyMoveMessagesTask.cpp
467     ${path_Imap}/Tasks/CreateMailboxTask.cpp
468     ${path_Imap}/Tasks/DeleteMailboxTask.cpp
469     ${path_Imap}/Tasks/EnableTask.cpp
470     ${path_Imap}/Tasks/ExpungeMailboxTask.cpp
471     ${path_Imap}/Tasks/ExpungeMessagesTask.cpp
472     ${path_Imap}/Tasks/Fake_ListChildMailboxesTask.cpp
473     ${path_Imap}/Tasks/Fake_OpenConnectionTask.cpp
474     ${path_Imap}/Tasks/FetchMsgMetadataTask.cpp
475     ${path_Imap}/Tasks/FetchMsgPartTask.cpp
476     ${path_Imap}/Tasks/GenUrlAuthTask.cpp
477     ${path_Imap}/Tasks/GetAnyConnectionTask.cpp
478     ${path_Imap}/Tasks/IdTask.cpp
479     ${path_Imap}/Tasks/IdleLauncher.cpp
480     ${path_Imap}/Tasks/ImapTask.cpp
481     ${path_Imap}/Tasks/KeepMailboxOpenTask.cpp
482     ${path_Imap}/Tasks/ListChildMailboxesTask.cpp
483     ${path_Imap}/Tasks/NoopTask.cpp
484     ${path_Imap}/Tasks/NumberOfMessagesTask.cpp
485     ${path_Imap}/Tasks/ObtainSynchronizedMailboxTask.cpp
486     ${path_Imap}/Tasks/OfflineConnectionTask.cpp
487     ${path_Imap}/Tasks/OpenConnectionTask.cpp
488     ${path_Imap}/Tasks/SortTask.cpp
489     ${path_Imap}/Tasks/SubscribeUnsubscribeTask.cpp
490     ${path_Imap}/Tasks/ThreadTask.cpp
491     ${path_Imap}/Tasks/UidSubmitTask.cpp
492     ${path_Imap}/Tasks/UnSelectTask.cpp
493     ${path_Imap}/Tasks/UpdateFlagsTask.cpp
494     ${path_Imap}/Tasks/UpdateFlagsOfAllMessagesTask.cpp
497 # The ModelTest is only needed when debugging manually
498 if (CMAKE_BUILD_TYPE STREQUAL "Debug")
499     list(APPEND libImap_SOURCES ${path_Imap}/Model/ModelTest/modeltest.cpp)
500 endif()
502 if(WITH_RAGEL)
503     message(STATUS "Using Ragel for the RFC 5322 parser")
504     ragel_parser(${path_Imap}/Parser/Rfc5322HeaderParser.cpp)
505     set(libImap_SOURCES ${libImap_SOURCES}
506         ${CMAKE_CURRENT_BINARY_DIR}/Rfc5322HeaderParser.generated.cpp)
507 else()
508     message(STATUS "Using pregenerated RFC 5322 parser")
509     set(libImap_SOURCES ${libImap_SOURCES}
510         ${path_Imap}/Parser/Rfc5322HeaderParser.generated.cpp)
511 endif()
513 set(trojita_desktop_SOURCES
514     ${path_DesktopGui}/main.cpp
517 if(WIN32)
518     list(APPEND trojita_desktop_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/trojita_win32.rc)
519     set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/trojita_win32.rc APPEND PROPERTY OBJECT_DEPENDS
520         ${CMAKE_CURRENT_SOURCE_DIR}/src/icons/trojita.ico
521         ${CMAKE_CURRENT_BINARY_DIR}/trojita-git-version.h
522         ${CMAKE_CURRENT_BINARY_DIR}/trojita-version.h
523     )
524 endif()
526 if(Qt5LinguistForTrojita_FOUND)
527     file(GLOB_RECURSE lang_PO "${CMAKE_CURRENT_SOURCE_DIR}/po/trojita_common_*.po")
528     qt5_wrap_po(trojita_QM ${lang_PO})
529     set(language_summary "")
530     foreach(po ${lang_PO})
531         string(REGEX REPLACE "^(.*)/trojita_common_(.*).po" "\\2" lang ${po})
532         list(APPEND language_summary ${lang})
533     endforeach()
534     list(SORT language_summary)
535     list(LENGTH language_summary num_languages)
536     if(num_languages)
537         message(STATUS "Available languages: ${language_summary}")
538         if(WITH_DESKTOP)
539             install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/locale/ DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/trojita/locale" REGEX "(x_test)|(.*\\.ts)" EXCLUDE)
540         endif()
541     else()
542         message(STATUS "No .po files found, will not install any languages")
543     endif()
544 else()
545     message(STATUS "Qt Linguist (lupdate/lrelease/lconvert) not found, disabling localization support")
546 endif()
548 set(version_files ${CMAKE_CURRENT_BINARY_DIR}/trojita-version.h ${CMAKE_CURRENT_BINARY_DIR}/trojita-git-version.h)
549 if(WITH_NSIS)
550     set(version_files ${version_files} ${CMAKE_CURRENT_BINARY_DIR}/trojita-version.nsi)
551     set(NSIS TRUE)
552 endif()
554 add_custom_target(version DEPENDS version_fake_file)
555 add_custom_command(OUTPUT version_fake_file ${version_files}
556     COMMAND ${CMAKE_COMMAND} -DGIT_EXECUTABLE=${GIT_EXECUTABLE} -DNSIS=${NSIS} -DHOST_ARCH=${HOST_ARCH} -DSOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR} -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/TrojitaVersion.cmake)
557 set_source_files_properties(${version_files}
558     PROPERTIES GENERATED TRUE
559     HEADER_FILE_ONLY TRUE)
561 add_library(Common STATIC ${libCommon_SOURCES})
562 set_property(TARGET Common APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
563 add_dependencies(Common version)
564 target_link_libraries(Common Qt5::Network)
566 add_library(AppVersion STATIC ${libAppVersion_SOURCES})
567 set_property(TARGET AppVersion APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
568 add_dependencies(AppVersion version)
569 target_link_libraries(AppVersion Common)
570 target_link_libraries(AppVersion Qt5::Core)
572 if(WITH_SHARED_PLUGINS)
573     add_library(Plugins SHARED ${libPlugins_SOURCES})
574     set_property(TARGET Plugins APPEND PROPERTY COMPILE_DEFINITIONS BUILDING_LIBTROJITA_PLUGINS)
575 else()
576     add_library(Plugins STATIC ${libPlugins_SOURCES})
577     set_property(TARGET Plugins APPEND PROPERTY COMPILE_DEFINITIONS QT_STATICPLUGIN)
578 endif()
579 set_target_properties(Plugins PROPERTIES OUTPUT_NAME trojita_plugins)
580 set_property(TARGET Plugins APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
581 target_link_libraries(Plugins Qt5::Core)
583 add_library(UiUtils STATIC ${libUiUtils_SOURCES})
584 set_property(TARGET UiUtils APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
585 target_link_libraries(UiUtils Plugins Common Qt5::Gui)
587 add_library(Streams STATIC ${libStreams_SOURCES})
588 set_property(TARGET Streams APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
589 if(WITH_ZLIB)
590     set_property(TARGET Streams APPEND PROPERTY INCLUDE_DIRECTORIES ${ZLIB_INCLUDE_DIR})
591     target_link_libraries(Streams ${ZLIB_LIBRARIES})
592 endif()
593 target_link_libraries(Streams Qt5::Network)
595 add_library(IPC STATIC ${libIPC_SOURCES})
596 set_property(TARGET IPC APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
597 if(WITH_DBUS)
598     target_link_libraries(IPC Qt5::DBus Qt5::Widgets)
599 else()
600     target_link_libraries(IPC Qt5::Core)
601 endif()
603 add_library(qwwsmtpclient STATIC ${libqwwsmtpclient_SOURCES})
604 target_link_libraries(qwwsmtpclient Qt5::Network)
606 add_library(MSA STATIC ${libMSA_SOURCES})
607 set_property(TARGET MSA APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
608 target_link_libraries(MSA Imap Streams qwwsmtpclient)
610 add_library(Composer STATIC ${libComposer_SOURCES})
611 set_property(TARGET Composer APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
612 target_link_libraries(Composer Common MSA Streams UiUtils qwwsmtpclient)
614 add_library(Imap STATIC ${libImap_SOURCES})
615 set_property(TARGET Imap APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
616 target_link_libraries(Imap Common Streams UiUtils Qt5::Sql)
618 add_library(Cryptography STATIC ${libCryptography_SOURCES})
619 set_property(TARGET Cryptography APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
620 target_link_libraries(Cryptography Common Imap)
621 if(WITH_MIMETIC)
622     target_link_libraries(Cryptography ${MIMETIC_LIBRARIES})
623     set_property(TARGET Cryptography APPEND PROPERTY INCLUDE_DIRECTORIES ${MIMETIC_INCLUDE_DIRS})
624 endif()
625 if(WITH_CRYPTO_MESSAGES)
626     if(WITH_GPGMEPP)
627         target_link_libraries(Cryptography Gpgmepp QGpgme)
628     elseif(WITH_KF5_GPGMEPP)
629         if(WIN32)
630             target_link_libraries(Cryptography KF5::Gpgmepp KF5::QGpgme)
631         else()
632             target_link_libraries(Cryptography KF5::Gpgmepp-pthread KF5::QGpgme)
633         endif()
634     endif()
635 endif()
637 ## ClearText password plugin
638 if(WITH_CLEARTEXT_PLUGIN)
639     trojita_add_plugin(trojita_plugin_ClearTextPasswordPlugin WITH_CLEARTEXT_PLUGIN src/Plugins/ClearTextPassword/ClearTextPassword.cpp)
640 endif()
642 ## QtKeyChain plugin
643 if(WITH_QTKEYCHAIN_PLUGIN)
644     trojita_add_plugin(trojita_plugin_QtKeychainPasswordPlugin WITH_QTKEYCHAIN_PLUGIN src/Plugins/QtKeyChain/QtKeyChainPassword.cpp)
645     target_link_libraries(trojita_plugin_QtKeychainPasswordPlugin ${QTKEYCHAIN_LIBRARIES} Qt5::DBus)
646     set_property(TARGET trojita_plugin_QtKeychainPasswordPlugin APPEND PROPERTY INCLUDE_DIRECTORIES ${QTKEYCHAIN_INCLUDE_DIRS})
647 endif()
649 ## AbookAddressbook plugin
650 if(WITH_ABOOKADDRESSBOOK_PLUGIN)
651     set(path_AbookAddressbook ${CMAKE_CURRENT_SOURCE_DIR}/src/Plugins/AbookAddressbook)
652     set(libAbookAddressbook_HEADERS
653         ${path_AbookAddressbook}/AbookAddressbook.h
654         ${path_AbookAddressbook}/be-contacts.h
655     )
656     set(libAbookAddressbook_SOURCES
657         ${path_AbookAddressbook}/AbookAddressbook.cpp
658         ${path_AbookAddressbook}/be-contacts.cpp
659     )
660     set(libAbookAddressbook_UI
661         ${path_AbookAddressbook}/be-contacts.ui
662         ${path_AbookAddressbook}/onecontact.ui
663     )
665     qt5_wrap_ui(libAbookAddressbook_UI_OUT ${libAbookAddressbook_UI})
667     trojita_add_plugin(trojita_plugin_AbookAddressbookPlugin WITH_ABOOKADDRESSBOOK_PLUGIN ${libAbookAddressbook_SOURCES} ${libAbookAddressbook_UI_OUT})
668     set_property(TARGET trojita_plugin_AbookAddressbookPlugin APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
670     target_link_libraries(trojita_plugin_AbookAddressbookPlugin Qt5::Widgets)
672     set(be_contacts_SOURCES
673         ${path_AbookAddressbook}/main.cpp
674     )
676     add_executable(be.contacts WIN32 ${be_contacts_SOURCES})
677     set_property(TARGET be.contacts APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
678     target_link_libraries(be.contacts Plugins)
679     if("${WITH_ABOOKADDRESSBOOK_PLUGIN}" STREQUAL "STATIC")
680         set_property(TARGET be.contacts APPEND PROPERTY COMPILE_DEFINITIONS QT_STATICPLUGIN)
681         target_link_libraries(be.contacts trojita_plugin_AbookAddressbookPlugin)
682     endif()
683     target_link_libraries(be.contacts Qt5::Widgets)
684 endif()
686 # Generate file static_plugins.h.in
687 get_property(STATIC_PLUGINS GLOBAL PROPERTY TROJITA_STATIC_PLUGINS)
688 file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/static_plugins.h.in "#include <QtPlugin>\n")
689 foreach(PLUGIN ${STATIC_PLUGINS})
690     file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/static_plugins.h.in "Q_IMPORT_PLUGIN(${PLUGIN})\n")
691 endforeach()
692 execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/static_plugins.h.in ${CMAKE_CURRENT_BINARY_DIR}/static_plugins.h)
694 if(WITH_DESKTOP)
695     qt5_wrap_ui(libDesktopGui_UI_OUT ${libDesktopGui_UI})
696     qt5_add_resources(libDesktopGui_RESOURCES_OUT ${libDesktopGui_RESOURCES})
698     add_library(DesktopGui STATIC ${libDesktopGui_SOURCES} ${libDesktopGui_UI_OUT} ${libDesktopGui_RESOURCES_OUT})
699     set_property(TARGET DesktopGui APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
700     # The following is needed for the LineEdit widget within the .ui files.
701     # The ${path_DesktopGui} is needed so that the generated ui_*.h file can find the headers of the custom widgets
702     set_property(TARGET DesktopGui APPEND PROPERTY INCLUDE_DIRECTORIES ${path_DesktopGui})
703     target_link_libraries(DesktopGui Common UiUtils Composer Cryptography Imap IPC MSA Plugins Streams qwwsmtpclient Qt5::WebKitWidgets)
705     # On Windows build a real Win32 GUI application without console window
706     # On other platforms WIN32 flag is ignored
707     add_executable(trojita WIN32 ${trojita_desktop_SOURCES} ${trojita_QM})
708     set_property(TARGET trojita APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII)
709     target_link_libraries(trojita AppVersion Common UiUtils DesktopGui ${STATIC_PLUGINS})
710 endif()
713 if(WITH_SHARED_PLUGINS)
714     install(TARGETS Plugins DESTINATION ${CMAKE_INSTALL_LIBDIR})
715 endif()
717 include(SanitizedDesktopFile)
719 if(WITH_ABOOKADDRESSBOOK_PLUGIN)
720     install(TARGETS be.contacts RUNTIME DESTINATION bin)
721 endif()
723 if(WITH_DESKTOP)
724     copy_desktop_file_without_cruft("${CMAKE_CURRENT_SOURCE_DIR}/src/Gui/org.kde.trojita.desktop" "${CMAKE_CURRENT_BINARY_DIR}/org.kde.trojita-DesktopGui.desktop")
725     install(TARGETS trojita RUNTIME DESTINATION bin)
726     install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.trojita-DesktopGui.desktop DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications/" RENAME org.kde.trojita.desktop)
727     install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/Gui/org.kde.trojita.appdata.xml DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo/")
728     install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/icons/trojita.png DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/32x32/apps/")
729     install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/icons/trojita.svg DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps/")
730 endif()
732 if(WITH_NSIS)
733     include(TrojitaNSIS)
734 endif()
737 if(BUILD_TESTING)
738     set(test_LibMailboxSync_SOURCES
739         tests/Utils/ModelEvents.cpp
740         tests/Utils/LibMailboxSync.cpp
741     )
742     add_library(test_LibMailboxSync STATIC ${test_LibMailboxSync_SOURCES})
743     set_property(TARGET test_LibMailboxSync APPEND PROPERTY INCLUDE_DIRECTORIES
744         ${CMAKE_CURRENT_SOURCE_DIR}/tests
745         ${CMAKE_CURRENT_SOURCE_DIR}/tests/Utils)
746     target_link_libraries(test_LibMailboxSync Imap MSA Streams Common Composer Qt5::Test)
748     macro(trojita_test dir fname)
749         set(test_${fname}_SOURCES tests/${dir}/test_${fname}.cpp)
750         add_executable(test_${fname} ${test_${fname}_SOURCES})
751         target_link_libraries(test_${fname} Imap MSA Streams Common Composer Cryptography test_LibMailboxSync)
752         set_property(TARGET test_${fname} APPEND PROPERTY INCLUDE_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}/tests)
753         if(NOT CMAKE_CROSSCOMPILING)
754             add_test(test_${fname} test_${fname})
755         endif()
756     endmacro()
758     set(UBSAN_ENV_SUPPRESSIONS "UBSAN_OPTIONS=suppressions=${CMAKE_CURRENT_SOURCE_DIR}/tests/ubsan.supp")
760     enable_testing()
761     trojita_test(Composer Composer_Submission)
762     trojita_test(Composer Composer_responses)
763     target_link_libraries(test_Composer_responses Qt5::WebKitWidgets)
764     trojita_test(Composer Html_formatting)
765     target_link_libraries(test_Html_formatting Qt5::WebKitWidgets)
766     trojita_test(Imap Imap_DisappearingMailboxes)
767     trojita_test(Imap Imap_Idle)
768     trojita_test(Imap Imap_LowLevelParser)
769     trojita_test(Imap Imap_Message)
770     trojita_test(Imap Imap_Model)
771     trojita_test(Imap Imap_MsgPartNetAccessManager)
772     set_property(TEST test_Imap_MsgPartNetAccessManager PROPERTY ENVIRONMENT "${UBSAN_ENV_SUPPRESSIONS}")
773     trojita_test(Imap Imap_Parser_parse)
774     trojita_test(Imap Imap_Parser_write)
775     trojita_test(Imap Imap_Responses)
776     trojita_test(Imap Imap_SelectedMailboxUpdates)
777     trojita_test(Imap Imap_Tasks_CreateMailbox)
778     trojita_test(Imap Imap_Tasks_DeleteMailbox)
779     trojita_test(Imap Imap_Tasks_ListChildMailboxes)
780     trojita_test(Imap Imap_Tasks_ObtainSynchronizedMailbox)
781     trojita_test(Imap Imap_Tasks_OpenConnection)
782     trojita_test(Imap Imap_Threading)
783     trojita_test(Imap Imap_BodyParts)
784     trojita_test(Imap Imap_Offline)
785     trojita_test(Imap Imap_CopyAndFlagOperations)
786     trojita_test(Cryptography Cryptography_MessageModel)
788     if(WITH_CRYPTO_MESSAGES)
789       find_program(GPGCONF_BINARY NAMES gpgconf)
790       if(GPGCONF_BINARY_NOTFOUND)
791         message(SEND_ERROR "The `gpgconf` binary from GnuPG not found, this is needed for crypto tests.")
792       endif()
794       if(NOT UNIX)
795         message(SEND_ERROR "The Cryptography unit tests really need Unix. Patches welcome.")
796       endif()
798       add_library(fake-dev-random SHARED ${CMAKE_CURRENT_SOURCE_DIR}/tests/Utils/fake-dev-random.c)
799       set_target_properties(fake-dev-random PROPERTIES AUTOMOC off)
800       target_link_libraries(fake-dev-random dl)
802       # FIXME: it would be nice to depend on the contents of keys/, but in my testing it produces Makefiles
803       # which suffer from races (the keygen.sh is run multiple times in parallel within the CI environment).
804       # I wasn't able to track down the root cause behind this; it affected all cmake versions within the CI
805       # as of Feb 2016, which is 3.1.something up to 3.3.something.
806       add_custom_command(OUTPUT crypto_test_data.h
807         COMMAND bash ${CMAKE_CURRENT_SOURCE_DIR}/tests/Cryptography/keygen.sh ${CMAKE_CURRENT_SOURCE_DIR}
808         DEPENDS fake-dev-random tests/Cryptography/keygen.sh tests/Cryptography/batch-keygen)
809       add_custom_target(crypto_test_data DEPENDS crypto_test_data.h)
811       trojita_test(Cryptography Cryptography_PGP)
812       set_property(TEST test_Cryptography_PGP PROPERTY ENVIRONMENT "${UBSAN_ENV_SUPPRESSIONS}")
813       add_dependencies(test_Cryptography_PGP crypto_test_data)
814     endif()
816     trojita_test(Misc Rfc5322)
817     trojita_test(Misc RingBuffer)
818     trojita_test(Misc SenderIdentitiesModel)
819     trojita_test(Misc SqlCache)
820     trojita_test(Misc algorithms)
821     trojita_test(Misc rfccodecs)
822     trojita_test(Misc prettySize)
823     trojita_test(Misc Formatting)
824     trojita_test(Misc QaimDfsIterator)
826 endif()
828 if(WIN32) # Check if we are on Windows
829     if(MSVC10) # Check if we are using the Visual Studio compiler 2010
830         # Because of linker errors (see http://stackoverflow.com/questions/5625884/conversion-of-stdwstring-to-qstring-throws-linker-error)
831         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:wchar_t-")
832     elseif(MINGW)
833     else()
834         message(WARNING "You are using a compiler which we have not tested yet (not MSVC10 or MINGW).")
835         message(WARNING "Please let us know how well it works.")
836     endif()
837 endif()