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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2011-12-22 00:52:26 +0400
committerJason Perkins <starkos@industriousone.com>2011-12-22 00:52:26 +0400
commit6d23978d461ddec130681807e3c591c13d8c3a19 (patch)
treece9f12d94cf060ac6c895b9d5a83e79c76d016fb /tests
parentbb158b1c5f43255114747dddce3fdb645e2af66d (diff)
Patch 3463020: Add windres environment variable for makefiles (icebreaker)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gmake_cpp.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_gmake_cpp.lua b/tests/test_gmake_cpp.lua
index 529a6da..3670e28 100644
--- a/tests/test_gmake_cpp.lua
+++ b/tests/test_gmake_cpp.lua
@@ -58,6 +58,14 @@ endif
ifndef AR
AR = ar
endif
+
+ifndef RESCOMP
+ ifdef WINDRES
+ RESCOMP = $(WINDRES)
+ else
+ RESCOMP = windres
+ endif
+endif
]]
end