aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-05-25 13:56:57 -0700
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-05-26 20:29:20 +0000
commit370c58f9130bd835f2901eb6000c3d4907c28f3e (patch)
treece78641c74971b12bb995fd37c0a8e199531d494 /tools
parent5373483963e6509e34c2e38c16291ce55650c68d (diff)
macOS: Add Logwolf packaging targets.
Rename the following build targets: app_bundle to wireshark_app_bundle dmg_package_prep to wireshark_dmg_prep dmg_package to wireshark_dmg Add logwolf_app_bundle, logwolf_dmg_prep, and logwolf_dmg targets and packaging assets. Update the documentation. We need to add a set of Logwolf version variables to CMake and make-version.pl. Add a static logwolf-version attribute to attributes.adoc in the mean time.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/macos-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/macos-setup.sh b/tools/macos-setup.sh
index d2931c21cc..4d23d27fb1 100755
--- a/tools/macos-setup.sh
+++ b/tools/macos-setup.sh
@@ -3563,11 +3563,11 @@ echo
echo "mkdir build; cd build"
if [ ! -z "$NINJA_VERSION" ]; then
echo "cmake -G Ninja .."
- echo "ninja app_bundle"
+ echo "ninja wireshark_app_bundle logwolf_app_bundle # (Modify as needed)"
echo "ninja install/strip"
else
echo "cmake .."
- echo "make $MAKE_BUILD_OPTS app_bundle"
+ echo "make $MAKE_BUILD_OPTS wireshark_app_bundle logwolf_app_bundle # (Modify as needed)"
echo "make install/strip"
fi
echo