diff options
| author | 2016-03-21 12:16:30 +0100 | |
|---|---|---|
| committer | 2016-03-21 12:16:30 +0100 | |
| commit | cb04dd4bae5ba7015af9b5861a407aa281aa041b (patch) | |
| tree | 83f5e597d3c5f4e07b1a55fc1308e3cba9529382 /3rdparty/genie/src/actions/make/make_cpp.lua | |
| parent | 2a4a703c79bf663a8a271b913d18cc3752035563 (diff) | |
Updated GENie to latest (nw)
Diffstat (limited to '3rdparty/genie/src/actions/make/make_cpp.lua')
| -rw-r--r-- | 3rdparty/genie/src/actions/make/make_cpp.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/3rdparty/genie/src/actions/make/make_cpp.lua b/3rdparty/genie/src/actions/make/make_cpp.lua index 795b74a491a..6eb0f54efc5 100644 --- a/3rdparty/genie/src/actions/make/make_cpp.lua +++ b/3rdparty/genie/src/actions/make/make_cpp.lua @@ -86,7 +86,7 @@ end -- target build rule - _p('$(TARGET): $(GCH) $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR) $(OBJDIRS)') + _p('$(TARGET): $(GCH) $(OBJECTS) $(LDDEPS) $(EXTERNAL_LIBS) $(RESOURCES) | $(TARGETDIR) $(OBJDIRS)') if prj.kind == "StaticLib" then if prj.msgarchiving then @@ -385,6 +385,7 @@ _p(' LDDEPS +=%s', make.list(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath")))) _p(' LIBS += $(LDDEPS)%s', make.list(cc.getlinkflags(cfg))) + _p(' EXTERNAL_LIBS +=%s', make.list(cc.getlibfiles(cfg))) if cfg.kind == "StaticLib" then if (not prj.options.ArchiveSplit) then |
