summaryrefslogtreecommitdiff
path: root/packaging/nsis
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-03-19 16:51:02 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2015-03-26 10:35:30 +0000
commit680dfc1e2fa755e08981d1e4ce523bff04f42384 (patch)
tree713bb698826b9ba5b7ee761baa31f4ab69cf2143 /packaging/nsis
parent13c486c33f9d3a015aaf0e4ee0c99643575cd235 (diff)
downloadwireshark-680dfc1e2fa755e08981d1e4ce523bff04f42384.tar.gz
CMake cleanup for VS solution
Add FOLDER properties to targets to tidy up the VS solution Change-Id: Ia42e0e89fb490cd3dcd33b7c5f59eb0a27b74c7a Reviewed-on: https://code.wireshark.org/review/7822 Petri-Dish: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'packaging/nsis')
-rw-r--r--packaging/nsis/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/packaging/nsis/CMakeLists.txt b/packaging/nsis/CMakeLists.txt
index 63a549fbb5..bf56d23b37 100644
--- a/packaging/nsis/CMakeLists.txt
+++ b/packaging/nsis/CMakeLists.txt
@@ -185,6 +185,7 @@ macro( ADD_NSIS_UNINSTALLER_TARGET )
add_custom_target(nsis_uninstaller
DEPENDS ${DATAFILE_DIR}/uninstall.exe
)
+ set_target_properties(nsis_uninstaller PROPERTIES FOLDER "Packaging")
add_custom_command(OUTPUT ${DATAFILE_DIR}/uninstall.exe
DEPENDS ${_nsis_source_dir}/uninstall.nsi
${_nsis_source_dir}/common.nsh
@@ -203,6 +204,7 @@ macro( ADD_NSIS_PACKAGE_TARGET )
DEPENDS
${_nsis_package}
)
+ set_target_properties(nsis_package PROPERTIES FOLDER "Packaging")
# qt-dll-manifest.nsh. Created using Wireshark.exe.
add_custom_command(OUTPUT ${_nsis_binary_dir}/qt-dll-manifest.nsh
COMMAND set "PATH=%PATH%;${QT_BIN_PATH}"