Skip to content

Commit bac6f94

Browse files
committed
workflows
1 parent 583cdb6 commit bac6f94

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/linux_rel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
submodules: 'recursive'
1616
- name: make
1717
run: |
18-
sudo apt install lib{opengl-dev,gl1-mesa-dev,glfw3,glfw3-dev}
18+
sudo apt install lib{opengl-dev,gl1-mesa-dev,glfw3,glfw3-dev,pkg-config}
1919
make

.github/workflows/win_rel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
- name: make
2121
shell: msys2 {0}
2222
run: |
23-
pacman -S --noconfirm mingw-w64-x86_64-{gcc,glfw} make
23+
pacman -S --noconfirm mingw-w64-x86_64-{gcc,glfw,pkg-config} make
2424
make

demo/cpp/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ LIBS =
5959
ifeq ($(UNAME_S), Linux) #LINUX
6060
ECHO_MESSAGE = "Linux"
6161
LIBS += $(LINUX_GL_LIBS) `pkg-config --static --libs glfw3`
62-
6362
CXXFLAGS += `pkg-config --cflags glfw3`
6463
CFLAGS = $(CXXFLAGS)
6564
endif

0 commit comments

Comments
 (0)