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-20 03:45:09 +0400
committerOliver Schneider <oliver@assarbad.net>2014-01-20 03:45:09 +0400
commit33adb0df23601872cb8cf636af90de8488d923dc (patch)
treedc47168060b6d65a4a14913f46d83a32b27d3eb8 /premake4.lua
parent5a74ffbaeae64daa57fe540eb3b30a2f75aca767 (diff)
Prevent name clashes that fail the build
Diffstat (limited to 'premake4.lua')
-rw-r--r--premake4.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/premake4.lua b/premake4.lua
index 536b5f9..8cff11b 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -119,7 +119,7 @@ solution ("windirstat")
-- Main WinDirStat project
project ("windirstat")
- local int_dir = "intermediate/" .. action .. "_$(" .. transformMN("Platform") .. ")_$(" .. transformMN("Configuration") .. ")"
+ local int_dir = "intermediate/" .. action .. "_$(" .. transformMN("Platform") .. ")_$(" .. transformMN("Configuration") .. ")\\$(ProjectName)"
uuid ("BD11B94C-6594-4477-9FDF-2E24447D1F14")
language ("C++")
kind ("WindowedApp")
@@ -236,7 +236,7 @@ solution ("windirstat")
for nm,guid in pairs(resource_dlls) do
premake.CurrentContainer = oldcurr
prj = project(nm)
- local int_dir = "intermediate/" .. action .. "_" .. nm
+ local int_dir = "intermediate/" .. action .. "_$(ProjectName)_" .. nm
uuid (guid)
language ("C++")
kind ("SharedLib")