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
612409e5
Commit
612409e5
authored
Nov 13, 2009
by
Brad King
💬
Browse files
CMake 2.8.0
parent
d2715cae
Changes
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
612409e5
...
...
@@ -316,7 +316,7 @@ ENDMACRO (CMAKE_BUILD_UTILITIES)
SET
(
CMake_VERSION_MAJOR 2
)
SET
(
CMake_VERSION_MINOR 8
)
SET
(
CMake_VERSION_PATCH 0
)
SET
(
CMake_VERSION_RC
7
)
#
SET(CMake_VERSION_RC
8
)
# We use odd minor numbers for development versions.
# Use a date for the development patch level.
...
...
ChangeLog.manual
View file @
612409e5
Changes in CMake 2.8.0 Release
- CPack: Honor CPACK_NSIS_DISPLAY_NAME (fixes regression)
Changes in CMake 2.8.0 RC 7
- Partially sync FindQt4 with KDE version
- Improve implementation of fix for #9090
...
...
Modules/CPack.cmake
View file @
612409e5
...
...
@@ -793,9 +793,23 @@ cpack_set_if_not_set(CPACK_INSTALL_CMAKE_PROJECTS
"
${
CMAKE_BINARY_DIR
}
;
${
CMAKE_PROJECT_NAME
}
;ALL;/"
)
cpack_set_if_not_set
(
CPACK_CMAKE_GENERATOR
"
${
CMAKE_GENERATOR
}
"
)
cpack_set_if_not_set
(
CPACK_TOPLEVEL_TAG
"
${
CPACK_SYSTEM_NAME
}
"
)
# if the user has set CPACK_NSIS_DISPLAY_NAME remember it
if
(
DEFINED CPACK_NSIS_DISPLAY_NAME
)
SET
(
CPACK_NSIS_DISPLAY_NAME_SET TRUE
)
endif
()
# if the user has set CPACK_NSIS_DISPLAY
# explicitly, then use that as the default
# value of CPACK_NSIS_PACKAGE_NAME instead
# of CPACK_PACKAGE_INSTALL_DIRECTORY
cpack_set_if_not_set
(
CPACK_NSIS_DISPLAY_NAME
"
${
CPACK_PACKAGE_INSTALL_DIRECTORY
}
"
)
cpack_set_if_not_set
(
CPACK_NSIS_PACKAGE_NAME
"
${
CPACK_PACKAGE_INSTALL_DIRECTORY
}
"
)
if
(
CPACK_NSIS_DISPLAY_NAME_SET
)
string
(
REPLACE
"
\\
"
"
\\\\
"
_NSIS_DISPLAY_NAME_TMP
"
${
CPACK_NSIS_DISPLAY_NAME
}
"
)
cpack_set_if_not_set
(
CPACK_NSIS_PACKAGE_NAME
"
${
_NSIS_DISPLAY_NAME_TMP
}
"
)
else
()
cpack_set_if_not_set
(
CPACK_NSIS_PACKAGE_NAME
"
${
CPACK_PACKAGE_INSTALL_DIRECTORY
}
"
)
endif
()
cpack_set_if_not_set
(
CPACK_OUTPUT_CONFIG_FILE
"
${
CMAKE_BINARY_DIR
}
/CPackConfig.cmake"
)
...
...
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