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
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
commit5a3d708d319cf22e3acd9b426e8b298af6c6131b (patch)
treee32200412cc1cea3176ea9f696cf99cf0feb42d8
parent2a5dae5db1ca37dbe2fd407dc28f6a41f5b40f23 (diff)
use "ALL_RESFLAGS" instead of "RESFLAGS" on resource compiler command line
-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('')