Added missing separator between link dependencies in C++ makefiles (oops)
This commit is contained in:
parent
f8ca7b42f6
commit
475e8ebd12
@ -21,6 +21,8 @@ RC1 -> RC2
|
||||
flag set (just in case)
|
||||
- Fixed handling of paths in links
|
||||
- Added "ToolsVersion" attribute to VS2005 and VS2008 C# projects
|
||||
- Fixed separator between library dependencies in C++ makefiles
|
||||
- Added missing os.copyfile() function
|
||||
|
||||
|
||||
-----
|
||||
|
@ -22,7 +22,7 @@ ifeq ($(config),<%= _MAKE.esc(cfg.name:lower())%>)
|
||||
CXXFLAGS += $(CFLAGS) <%= table.concat(cc.getcxxflags(cfg), " ") %>
|
||||
LDFLAGS += <%= table.concat(table.join(cc.getldflags(cfg), cc.getlinkflags(cfg), cfg.linkoptions), " ") %>
|
||||
RESFLAGS += $(DEFINES) $(INCLUDES) <%= table.concat(table.join(cc.getdefines(cfg.resdefines), cc.getincludedirs(cfg.resincludedirs), cfg.resoptions), " ") %>
|
||||
LDDEPS += <%= table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath"))) %>
|
||||
LDDEPS += <%= table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath")), " ") %>
|
||||
<% if cfg.kind == "StaticLib" then %>
|
||||
LINKCMD = ar -rcs $(TARGET) $(OBJECTS)
|
||||
<% else %>
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user