summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorjan Iversen <jani@documentfoundation.org>2017-01-10 18:03:57 +0100
committerjan Iversen <jani@documentfoundation.org>2017-01-10 18:06:20 +0100
commite4b6c3b2f9dc579c278b47a777fb57def9e0df1f (patch)
tree50bbda30326b82d25c1881a9bef9fdf6f9e6fea1 /bin
parent54490d9322dfeb97142885de043d5710dad673ed (diff)
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
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ide2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index c1022b43cc4d..d4eb5e9adef8 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -831,7 +831,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator):
dependency_libs = {}
for linked_lib in linked_libs:
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
return dependency_libs