From: Manuel Nickschas Date: Tue, 10 Apr 2018 20:18:33 +0000 (+0200) Subject: cmake: Add exception handling support to MSVC compile flags X-Git-Tag: travis-deploy-test~136 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=7a8ea3eee1dcff4eaa5398d1cf5739fa32eccd9e;hp=7a8ea3eee1dcff4eaa5398d1cf5739fa32eccd9e cmake: Add exception handling support to MSVC compile flags Since STL types may throw, MSVC needs to get told to support exceptions by specifying the /EHsc flag. Otherwise, it warns about the lack thereof, even though Quassel itself does not use nor handle exceptions. Closes GH-350. ---