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

github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Mulder <rjmyst3@gmail.com>2013-06-21 19:18:13 +0400
committerRyan Mulder <rjmyst3@gmail.com>2013-06-21 19:18:13 +0400
commit1389d1d6f3aac36cd9459d6d99a9e1ff0fddd3de (patch)
treee32200412cc1cea3176ea9f696cf99cf0feb42d8 /src
parent20fd5a0c28f49618218d3c8d43c742fbab68edf0 (diff)
use "ALL_RESFLAGS" instead of "RESFLAGS" on resource compiler command line
Diffstat (limited to 'src')
-rw-r--r--src/actions/make/make_cpp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/make/make_cpp.lua b/src/actions/make/make_cpp.lua
index 99387ad..c00b5e0 100644
--- a/src/actions/make/make_cpp.lua
+++ b/src/actions/make/make_cpp.lua
@@ -118,7 +118,7 @@
elseif (path.getextension(file) == ".rc") then
_p('$(OBJDIR)/%s.res: %s', _MAKE.esc(path.getbasename(file)), _MAKE.esc(file))
_p('\t@echo $(notdir $<)')
- _p('\t$(SILENT) $(RESCOMP) $< -O coff -o "$@" $(RESFLAGS)')
+ _p('\t$(SILENT) $(RESCOMP) $< -O coff -o "$@" $(ALL_RESFLAGS)')
end
end
_p('')