Skip to content

Commit

Permalink
Updated build htslib for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
kcleal committed Jul 17, 2024
1 parent b8a6f4a commit be4b6d6
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,25 @@ jobs:
run: |
make prep
- name: Set up GLFW3 paths
run: |
echo "export LDFLAGS=\"-L$(brew --prefix)/Cellar/glfw/3.3.5/lib\" \$LDFLAGS" >> $GITHUB_ENV
echo "export CPPFLAGS=\"-I$(brew --prefix)/Cellar/glfw/3.3.5/include\" \$CPPFLAGS" >> $GITHUB_ENV
- name: package
run: |
osacompile -o gw.app deps/gw_applescript_prog.txt
cp deps/gw_droplet.icns gw.app/Contents/Resources/droplet.icns
echo "BUILDING GW"
make
brew_lib=$(brew --prefix)/lib
brew_include=$(brew --prefix)/include
echo $brew_lib
ls $brew_lib
echo $brew_include
ls $brew_include
LDFLAGS="${LDFLAGS} -L${brew_lib}" CPPFLAGS="${CPPFLAGS} -I${brew_include}" make
mv gw ./gw.app/Contents/MacOS
rm -rf include lib src Makefile
Expand Down

0 comments on commit be4b6d6

Please sign in to comment.