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
Chuck Atkins
KWSys
Commits
3c16eac7
Commit
3c16eac7
authored
Dec 26, 2005
by
Bill Hoffman
Browse files
ENH: add better support for framework linking
parent
8f2167aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
SystemTools.cxx
View file @
3c16eac7
...
...
@@ -1992,6 +1992,17 @@ kwsys_stl::string SystemTools
for
(
kwsys_stl
::
vector
<
kwsys_stl
::
string
>::
const_iterator
p
=
path
.
begin
();
p
!=
path
.
end
();
++
p
)
{
#if defined(__APPLE__)
tryPath
=
*
p
;
tryPath
+=
"/"
;
tryPath
+=
name
;
tryPath
+=
".framework"
;
if
(
SystemTools
::
FileExists
(
tryPath
.
c_str
())
&&
SystemTools
::
FileIsDirectory
(
tryPath
.
c_str
()))
{
return
SystemTools
::
CollapseFullPath
(
tryPath
.
c_str
());
}
#endif
#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__)
tryPath
=
*
p
;
tryPath
+=
"/"
;
...
...
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