Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SSE4
CMake
Commits
612409e5
Commit
612409e5
authored
15 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
CMake 2.8.0
parent
d2715cae
Branches
Branches containing commit
Tags
v3.22.4
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
ChangeLog.manual
+3
-0
3 additions, 0 deletions
ChangeLog.manual
Modules/CPack.cmake
+16
-2
16 additions, 2 deletions
Modules/CPack.cmake
with
20 additions
and
3 deletions
CMakeLists.txt
+
1
−
1
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.
...
...
This diff is collapsed.
Click to expand it.
ChangeLog.manual
+
3
−
0
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
...
...
This diff is collapsed.
Click to expand it.
Modules/CPack.cmake
+
16
−
2
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"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment