From 0997129e0f07cc8beca9d922a86334e7aff247b3 Mon Sep 17 00:00:00 2001 From: Graham Bloice Date: Wed, 8 Jul 2015 08:07:24 +0100 Subject: 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 Tested-by: Petri Dish Buildbot Reviewed-by: Graham Bloice --- packaging/nsis/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'packaging/nsis') 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. -- cgit v1.2.3