diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-07-23 01:34:28 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-07-23 01:49:14 +0000 |
| commit | 2049765ec47898149310368efbe8b58b813cb20d (patch) | |
| tree | 5043b0c935052d9b7ec3d21710dd37226a34703e /CMakeScripts/Dist.cmake | |
| parent | cmake: Add 'dist' target to create Windows .msi installer (diff) | |
| download | inkscape-2049765ec47898149310368efbe8b58b813cb20d.tar.gz inkscape-2049765ec47898149310368efbe8b58b813cb20d.zip | |
cmake: Add 'dist-win-all' target
This creates all currently supported forms of distribution:
- .7z archive
- .exe installer
- .msi installer
Diffstat (limited to 'CMakeScripts/Dist.cmake')
| -rw-r--r-- | CMakeScripts/Dist.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeScripts/Dist.cmake b/CMakeScripts/Dist.cmake index 32e3f5a4f..eece0122d 100644 --- a/CMakeScripts/Dist.cmake +++ b/CMakeScripts/Dist.cmake @@ -128,4 +128,9 @@ if(WIN32) add_dependencies(dist-win-msi install/strip) add_dependencies(dist-win-msi-fast install/strip) + + # ----------------------------------------------------------------------------- + # 'dist-win-all' - generate all 'dist' targets for Windows + # ----------------------------------------------------------------------------- + add_custom_target(dist-win-all DEPENDS dist-win-7z dist-win-exe dist-win-msi) endif() |
