Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
37 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| INCLUDE(CPackConfig.cmake) | ||
| SET(CPACK_GENERATOR ZIP) | ||
| set(CPACK_ARCHIVE_COMPONENT_INSTALL ON) | ||
| set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE) | ||
| SET(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY ON) | ||
| FOREACH(it DebugBinaries Debuginfo IniFiles Junk Test SqlBench) | ||
| list(FIND CPACK_COMPONENTS_ALL "${it}" index) | ||
| IF(index GREATER 0) | ||
| LIST(REMOVE_AT CPACK_COMPONENTS_ALL ${index}) | ||
| ENDIF() | ||
| ENDFOREACH() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| INCLUDE(CPackConfig.cmake) | ||
| set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}-debugsymbols") | ||
| set(CPACK_ARCHIVE_COMPONENT_INSTALL ON) | ||
| set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE) | ||
| SET(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY ON) | ||
| SET(CPACK_COMPONENTS_ALL Debuginfo) |