Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
CMake
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2,680
Issues
2,680
List
Boards
Labels
Milestones
Merge Requests
23
Merge Requests
23
Packages
Packages
Container Registry
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
CMake
CMake
Commits
7f1cd328
Commit
7f1cd328
authored
Oct 06, 2016
by
Stephen Kelly
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmLocalGenerator: Rename local variable to be more appropriate
parent
2597bcf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Source/cmLocalGenerator.cxx
Source/cmLocalGenerator.cxx
+3
-4
No files found.
Source/cmLocalGenerator.cxx
View file @
7f1cd328
...
...
@@ -1531,7 +1531,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::string& linkLibraries,
std
::
string
cmLocalGenerator
::
GetLinkLibsCMP0065
(
std
::
string
const
&
linkLanguage
,
cmGeneratorTarget
&
tgt
)
const
{
std
::
string
link
Lib
s
;
std
::
string
link
Flag
s
;
// Flags to link an executable to shared libraries.
if
(
tgt
.
GetType
()
==
cmState
::
EXECUTABLE
&&
...
...
@@ -1571,11 +1571,10 @@ std::string cmLocalGenerator::GetLinkLibsCMP0065(
std
::
string
linkFlagsVar
=
"CMAKE_SHARED_LIBRARY_LINK_"
;
linkFlagsVar
+=
linkLanguage
;
linkFlagsVar
+=
"_FLAGS"
;
linkLibs
=
this
->
Makefile
->
GetSafeDefinition
(
linkFlagsVar
);
linkLibs
+=
" "
;
linkFlags
=
this
->
Makefile
->
GetSafeDefinition
(
linkFlagsVar
);
}
}
return
link
Lib
s
;
return
link
Flag
s
;
}
void
cmLocalGenerator
::
AddArchitectureFlags
(
std
::
string
&
flags
,
...
...
Brad King
@brad.king
Mentioned in commit
89b03498
·
Oct 07, 2016
Mentioned in commit
89b03498
Mentioned in commit 89b03498ef0005778260f4734e3102e8a5463ff0
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment