Skip to content

Commit

Permalink
Fixed FLTK API compilation issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed May 26, 2024
1 parent 17400ca commit 6e5b11d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/search_string.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# source code.
#

echo "Searching for $1..."
grep -rn --exclude-dir='BUILD-*' --exclude-dir='.git' --exclude-dir='tlRender' --exclude-dir='doc*' --exclude-dir='.github' $1
echo "Searching for '$1'..."
grep -rn --exclude-dir='BUILD-*' --exclude-dir='.git' --exclude-dir='tlRender' --exclude-dir='doc*' --exclude-dir='.github' "$1"
5 changes: 5 additions & 0 deletions etc/runme_nolog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ if [[ $KERNEL == *Msys* ]]; then
. $PWD/etc/compile_windows_dlls.sh
fi

#
# Work-around FLTK's CMakeLists.txt bug
#
rm -rf $BUILD_DIR/install/include/FL

cd $BUILD_DIR

cmd="cmake -G '${CMAKE_GENERATOR}'
Expand Down

0 comments on commit 6e5b11d

Please sign in to comment.