summaryrefslogtreecommitdiff
path: root/packaging/nsis
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-07-08 08:07:24 +0100
committerGraham Bloice <graham.bloice@trihedral.com>2015-07-08 10:21:25 +0000
commit0997129e0f07cc8beca9d922a86334e7aff247b3 (patch)
tree5f1b9ba343426b162a683cba93350b5d14dd9f2a /packaging/nsis
parent8fdd49aaa1ed50ee0d6b0cee00f85e891c144fa9 (diff)
downloadwireshark-0997129e0f07cc8beca9d922a86334e7aff247b3.tar.gz
Fix CMake install of lua scripts
The CMake generation of all-manifest.nsh is missing the 3 lua scripts, init.lua, console.lua and dtd_gen.lua. Change-Id: I2d34cfe075c5195d1d8816c0d816015195756fa2 Reviewed-on: https://code.wireshark.org/review/9551 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.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/packaging/nsis/CMakeLists.txt b/packaging/nsis/CMakeLists.txt
index 70791363f2..b40796cab2 100644
--- a/packaging/nsis/CMakeLists.txt
+++ b/packaging/nsis/CMakeLists.txt
@@ -146,6 +146,9 @@ foreach(_dll ${GLIB2_DLLS} ${CARES_DLL} ${GCRYPT_DLLS} ${GEOIP_DLL}
endforeach()
set(_all_manifest_contents "${_all_manifest_contents}File \"\${STAGING_DIR}\\gspawn-${WIRESHARK_TARGET_PLATFORM}-helper.exe\"\n")
set(_all_manifest_contents "${_all_manifest_contents}File \"\${STAGING_DIR}\\gspawn-${WIRESHARK_TARGET_PLATFORM}-helper-console.exe\"\n")
+foreach(_script "init.lua" "console.lua" "dtd_gen.lua")
+ set(_all_manifest_contents "${_all_manifest_contents}File \"\${STAGING_DIR}\\${_script}\"\n")
+endforeach()
file(WRITE "${_all_manifest}" "${_all_manifest_contents}")
# gtk-dll-manifest.nsh. Can be created at configure time.