Skip to content

Commit

Permalink
[CI] Fix failing linux and mingw vcpkg builds due to the change in th…
Browse files Browse the repository at this point in the history
…e brotli library name (now without '-static' suffix)

Signed-off-by: Vitalii Koshura <[email protected]>
  • Loading branch information
AenBleidd committed Sep 26, 2023
1 parent ed69f05 commit f7cce26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/example_app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ ifdef BUILD_WITH_VCPKG
-L$(VCPKG_DIR)/lib

LIBUI = -lX11 -lXmu -lXrandr -lXxf86vm -lXi
LIBFTGL = -lftgl -lfreetype -lpng -lbz2 -lbrotlidec-static -lbrotlienc-static -lbrotlicommon-static -lz
LIBFTGL = -lftgl -lfreetype -lpng -lbz2 -lbrotlidec -lbrotlienc -lbrotlicommon -lz
endif

ifdef BUILD_WITH_MINGW
LIBGLUT = -lfreeglut_static
LIBGLU = -lglu32
LIBGL= -lopengl32
LIBUI = -lgdi32 -lwinmm
LIBFTGL = -lftgl -lfreetype -lpng -lbz2 -lbrotlidec-static -lbrotlienc-static -lbrotlicommon-static -lz
LIBFTGL = -lftgl -lfreetype -lpng -lbz2 -lbrotlidec -lbrotlienc -lbrotlicommon -lz
endif

PROGS = uc2 ucn
Expand Down

0 comments on commit f7cce26

Please sign in to comment.