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>2014-01-26 23:39:18 +0400
committerOliver Schneider <oliver@assarbad.net>2014-01-26 23:39:18 +0400
commit5c08cdf538e5d28d552309cc1aec99a37def2067 (patch)
treef121f16563d15f05666bae9b095d4de6c3bc7e02 /premake4.lua
parent9a26435a1cf6e9d6c6aa6df5a8b3f682ab8f4e97 (diff)
Adding new implementation file tracer.cpp
Changing the license of the tracer (.h) to MIT Adjustments to premake4.lua to accommodate these changes (and previous ones) Creating console window for VTRACE in debug builds now Updated main project file (because of premake4.lua)
Diffstat (limited to 'premake4.lua')
-rw-r--r--premake4.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/premake4.lua b/premake4.lua
index 892db3e..737c727 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -178,7 +178,7 @@ solution (iif(release, slnname, "windirstat"))
"windirstat/Dialogs/*.h",
"windirstat/windirstat.rc",
"windirstat/res/*.*",
- "*.txt", "*.rst",
+ "*.txt", "*.md",
"common/BUILD",
"common/*.cmd",
"premake4.lua",
@@ -186,6 +186,7 @@ solution (iif(release, slnname, "windirstat"))
excludes
{
+ "common/tracer.cpp", -- this one gets an #include via windirstat.cpp
"windirstat/stdafx.cpp",
}
@@ -219,7 +220,7 @@ solution (iif(release, slnname, "windirstat"))
targetsuffix ("64")
configuration {"Debug"}
- defines ("_DEBUG")
+ defines {"_DEBUG", "VTRACE_TO_CONSOLE=1"}
flags {"Symbols"}
configuration {"Release"}