aboutsummaryrefslogtreecommitdiff
path: root/lib/about
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-04-21 13:26:52 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-04-21 13:26:52 +0200
commitc13c5b1963aa929c52acfebf6f92d7101685dcef (patch)
tree0b3825f307049bc661b3d9450504bc2ff0627107 /lib/about
parentAdd Boost_INCLUDE_DIRS to poi and about (diff)
downloadsmolbote-c13c5b1963aa929c52acfebf6f92d7101685dcef.tar.xz
Add msvc to AboutDialog compiler define
Diffstat (limited to 'lib/about')
-rw-r--r--lib/about/aboutdialog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/about/aboutdialog.cpp b/lib/about/aboutdialog.cpp
index 1d60eb4..2b382c6 100644
--- a/lib/about/aboutdialog.cpp
+++ b/lib/about/aboutdialog.cpp
@@ -17,8 +17,10 @@
#define compiler "Clang " __clang_version__
#elif defined(__GNUC__)
#define compiler "GCC " __VERSION__
+#elif defined(_MSC_VER)
+#define compiler "MSVC " _MSC_VER
#else
-#define compiler "unknown compiler";
+#define compiler "unknown compiler"
#endif
AboutDialog::AboutDialog(QWidget *parent)