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
CMake
CMake
Commits
b548b34a
Commit
b548b34a
authored
Feb 29, 2008
by
Bill Hoffman
Browse files
ENH: add vs9 stuff, still need msvc9 mfc
parent
f386c2aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/InstallRequiredSystemLibraries.cmake
View file @
b548b34a
...
...
@@ -55,6 +55,35 @@ IF(MSVC)
ENDIF
(
CMAKE_INSTALL_DEBUG_LIBRARIES
)
ENDIF
(
MSVC80
)
IF
(
MSVC90
)
# Find the runtime library redistribution directory.
FIND_PATH
(
MSVC90_REDIST_DIR NAMES x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest
PATHS
"[HKEY_LOCAL_MACHINE
\\
SOFTWARE
\\
Microsoft
\\
VisualStudio
\\
9.0;InstallDir]/../../VC/redist"
"[HKEY_LOCAL_MACHINE
\\
SOFTWARE
\\
Microsoft
\\
VCExpress
\\
9.0;InstallDir]/../../VC/redist"
)
MARK_AS_ADVANCED
(
MSVC90_REDIST_DIR
)
SET
(
MSVC90_CRT_DIR
"
${
MSVC90_REDIST_DIR
}
/x86/Microsoft.VC90.CRT"
)
# Install the manifest that allows DLLs to be loaded from the
# directory containing the executable.
SET
(
__install__libs
"
${
MSVC90_CRT_DIR
}
/Microsoft.VC90.CRT.manifest"
"
${
MSVC90_CRT_DIR
}
/msvcm90.dll"
"
${
MSVC90_CRT_DIR
}
/msvcp90.dll"
"
${
MSVC90_CRT_DIR
}
/msvcr90.dll"
)
IF
(
CMAKE_INSTALL_DEBUG_LIBRARIES
)
SET
(
MSVC90_CRT_DIR
"
${
MSVC90_REDIST_DIR
}
/Debug_NonRedist/x86/Microsoft.VC90.DebugCRT"
)
SET
(
__install__libs
${
__install__libs
}
"
${
MSVC90_CRT_DIR
}
/Microsoft.VC90.DebugCRT.manifest"
"
${
MSVC90_CRT_DIR
}
/msvcm90d.dll"
"
${
MSVC90_CRT_DIR
}
/msvcp90d.dll"
"
${
MSVC90_CRT_DIR
}
/msvcr90d.dll"
)
ENDIF
(
CMAKE_INSTALL_DEBUG_LIBRARIES
)
ENDIF
(
MSVC90
)
IF
(
CMAKE_INSTALL_MFC_LIBRARIES
)
IF
(
MSVC70
)
SET
(
__install__libs
${
__install__libs
}
...
...
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