773467dee4
macOS Big Sur 11.3 introduced a new "security feature" such that app bundles created from existing bundle templates in downloaded files (tar distibutions, expanded) could no longer be executed without unsetting the "quarantine" attribute. This commit fixes this by creating all bundles from scratch. Known *workaround* for older tarballs and snapshots: $ xattr -d -r com.apple.quarantine xxx.app
124 lines
1.7 KiB
Plaintext
124 lines
1.7 KiB
Plaintext
#
|
|
# Files to be ignored by Git (do not commit)
|
|
#
|
|
|
|
*.o
|
|
*.exe
|
|
|
|
# CMake
|
|
bin/
|
|
**/cmake_install.cmake
|
|
**/CMakeCache.txt
|
|
**/CMakeFiles/
|
|
etc/UseFLTK.cmake
|
|
cmake_uninstall.cmake
|
|
UseFLTK.cmake
|
|
FLTK.sln
|
|
FLTK-Targets.cmake
|
|
FLTKConfig.cmake
|
|
etc/FLTKConfig.cmake
|
|
|
|
# MSVC
|
|
*.tlog
|
|
.vs/
|
|
|
|
# VS Code (Visual Studio Code) Editor
|
|
.vscode/
|
|
|
|
# /
|
|
/autom4te*.cache
|
|
/build
|
|
/clang
|
|
/config.cache
|
|
/config.h
|
|
/config.log
|
|
/config.status
|
|
/configure
|
|
/fltk-config
|
|
/fltk.list
|
|
/fltk.spec
|
|
/makeinclude
|
|
/*.bck
|
|
/TAGS
|
|
|
|
# /FL
|
|
/FL/abi-version.h
|
|
/FL/Makefile
|
|
/FL/*.bck
|
|
|
|
# /cairo/
|
|
/cairo/*.so*
|
|
/cairo/*.dll
|
|
|
|
# /documentation/
|
|
/documentation/.xvpics
|
|
/documentation/blocks.0
|
|
/documentation/blocks.6
|
|
/documentation/blocks.z
|
|
/documentation/checkers.0
|
|
/documentation/checkers.6
|
|
/documentation/checkers.z
|
|
/documentation/Doxybook
|
|
/documentation/Doxyfile
|
|
/documentation/fltk.0
|
|
/documentation/fltk.3
|
|
/documentation/fltk-config.0
|
|
/documentation/fltk-config.1
|
|
/documentation/fltk-config.z
|
|
/documentation/fltk.d
|
|
/documentation/fltk.pdf
|
|
/documentation/fltk.z
|
|
/documentation/fluid.0
|
|
/documentation/fluid.1
|
|
/documentation/fluid.z
|
|
/documentation/html
|
|
/documentation/latex
|
|
/documentation/sudoku.0
|
|
/documentation/sudoku.6
|
|
/documentation/sudoku.z
|
|
/documentation/*.bck
|
|
/documentation/*.bak
|
|
/documentation/*.log
|
|
|
|
# /documentation/src/
|
|
/documentation/src/*.0
|
|
/documentation/src/*.1
|
|
/documentation/src/*.3
|
|
/documentation/src/*.6
|
|
/documentation/src/*.z
|
|
/documentation/src/fltk-book.tex
|
|
|
|
# /examples/
|
|
# see examples/.gitignore
|
|
|
|
# /fluid/
|
|
/fluid/fluid
|
|
/fluid/fluid-shared
|
|
/fluid/*.bck
|
|
/fluid/*.exe
|
|
/fluid/TAGS
|
|
/fluid/fluid.app
|
|
/fluid/pixmaps/*.bck
|
|
|
|
# /lib/
|
|
/lib/lib*
|
|
/lib/*.lib
|
|
/lib/*.a
|
|
|
|
# /misc/
|
|
/misc/doxystar
|
|
|
|
# /src/
|
|
/src/*.so*
|
|
/src/*.sl*
|
|
/src/*.a
|
|
/src/*.bck
|
|
/src/*.dll
|
|
/src/*.sav
|
|
/src/*.dylib
|
|
|
|
# /test/
|
|
# see test/.gitignore
|
|
|
|
**/.DS_Store
|