Kaydet (Commit) e4b6c3b2 authored tarafından jan Iversen's avatar jan Iversen

gbuild-to-ide, solved vs2013 generation problem.

mikekaganski reported a problem with the vs2013 class, due to the
latest changes. Problem solved:

.name() -> .name

Change-Id: Idb3e063bee93041dd010ed0c0b5bb71ac7efcd57
üst 54490d93
...@@ -831,7 +831,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator): ...@@ -831,7 +831,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator):
dependency_libs = {} dependency_libs = {}
for linked_lib in linked_libs: for linked_lib in linked_libs:
for library_project in library_projects: for library_project in library_projects:
if library_project.target.name() == linked_lib: if library_project.target.name == linked_lib:
dependency_libs[library_project.guid] = library_project dependency_libs[library_project.guid] = library_project
return dependency_libs return dependency_libs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment