Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Brad King
CMake
Commits
9ea39ee0
Commit
9ea39ee0
authored
Dec 01, 2014
by
Brad King
💬
Browse files
Merge branch 'fix-implicit-lib-logging' into release
parents
5062bf74
20bf6971
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/CMakeParseImplicitLinkInfo.cmake
View file @
9ea39ee0
...
...
@@ -66,7 +66,8 @@ function(CMAKE_PARSE_IMPLICIT_LINK_INFO text lib_var dir_var fwk_var log_var obj
set
(
log
"
${
log
}
arg [
${
arg
}
] ==> dir [
${
dir
}
]
\n
"
)
elseif
(
"
${
arg
}
"
MATCHES
"^-l([^:].*)$"
)
# Unix library.
list
(
APPEND implicit_libs_tmp
${
CMAKE_MATCH_1
}
)
set
(
lib
"
${
CMAKE_MATCH_1
}
"
)
list
(
APPEND implicit_libs_tmp
${
lib
}
)
set
(
log
"
${
log
}
arg [
${
arg
}
] ==> lib [
${
lib
}
]
\n
"
)
elseif
(
"
${
arg
}
"
MATCHES
"^(.:)?[/
\\
].*
\\
.a$"
)
# Unix library full path.
...
...
Write
Preview
Supports
Markdown
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