summaryrefslogtreecommitdiff
path: root/CMake/macOS-bundle-wrapper.in
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 15:21:34 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 15:21:34 +0500
commitdb214d1145e46d527a46d1fc2519548d2c4d23f1 (patch)
treecf0fd9922e4d54f6beb63888f9b28c8e2a787bdf /CMake/macOS-bundle-wrapper.in
parent75fc94d6c71fe686f6dde5b41ad91cba2f6bdd6f (diff)
wip: fork
Diffstat (limited to 'CMake/macOS-bundle-wrapper.in')
-rw-r--r--CMake/macOS-bundle-wrapper.in25
1 files changed, 0 insertions, 25 deletions
diff --git a/CMake/macOS-bundle-wrapper.in b/CMake/macOS-bundle-wrapper.in
deleted file mode 100644
index 2f31e4886..000000000
--- a/CMake/macOS-bundle-wrapper.in
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# Run the executable of a macOS bundle for the Fast Light Tool Kit (FLTK).
-#
-# Copyright 1998-2020 by Bill Spitzak and others.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# https://www.fltk.org/COPYING.php
-#
-# Please see the following page on how to report bugs and issues:
-#
-# https://www.fltk.org/bugs.php
-#
-#
-# Install this script side by side with the macOS bundle with the same name:
-#
-# - dir/prog.app macOS bundle (directory)
-# - dir/prog this script: runs the executable 'prog' inside the bundle
-#
-prog="`basename \"$0\"`"
-dir="`dirname \"$0\"`"
-exec "$dir/$prog.app/Contents/MacOS/$prog" "$@"