Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2017-11-24 00:18:15 +0300
committerOliver Schneider <oliver@assarbad.net>2017-11-24 00:18:15 +0300
commit76ed1ebfcd5ddc6c40bce6e193c4d8d49a35a61c (patch)
tree8ee7da777703095a7cc8b97acbb46d599b5be7ae /windirstat/stdafx.cpp
parentea449d28c1582161a3007e8c168dd56b7ce867d3 (diff)
Rearranged some build flags in premake4.lua
Fixed up produce_vsprojects.cmd to heed the command line arguments Reverted to original RGB_GET_?VALUE macros to prevent an exception in debug builds Removing more parts referring to the CHM help file Removing WEAK_ASSERT Using --full to produce the checked in solutions Fixed constant length to account for terminating zero
Diffstat (limited to 'windirstat/stdafx.cpp')
-rw-r--r--windirstat/stdafx.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/windirstat/stdafx.cpp b/windirstat/stdafx.cpp
index d469c3e..d3bf4dd 100644
--- a/windirstat/stdafx.cpp
+++ b/windirstat/stdafx.cpp
@@ -23,7 +23,11 @@
#if !defined(HAVE_WIN7_SDK) || !HAVE_WIN7_SDK
# if _MSC_VER <= 1500
-# pragma message ("WARNING: You're building a feature-incomplete WinDirStat ('#define HAVE_WIN7_SDK' missing or 0). Refer to https://bitbucket.org/windirstat/windirstat/wiki/Building for details on how to build with this version of Visual Studio.")
+# if !defined(_ANSISTRING) || !defined(ANSISTRING)
+# define _ANSISTRING(text) #text
+# define ANSISTRING(text) _ANSISTRING(text)
+# endif
+# pragma message (ANSISTRING(__FILE__) "(" ANSISTRING(__LINE__) ") : warning: You're building a feature-incomplete WinDirStat ('#define HAVE_WIN7_SDK' missing or 0). Refer to https://bitbucket.org/windirstat/windirstat/wiki/Building for details on how to build with this version of Visual Studio.")
# endif // Visual C/C++ 2008 and below
#endif // HAVE_WIN7_SDK