diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-02-01 19:05:15 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-02-01 19:05:15 +0100 |
commit | a2691907e9920a05f5f24e6e7be589d54a63d74a (patch) | |
tree | b5138e7cef8ea78999324134404fb0ef89ae7954 | |
parent | 7c57c1e89942df1c1441c7fc0509d40096cf52eb (diff) |
Dont use pkg config for glm, the pkg config was removed in the latest update
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | project.conf | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/bin/sh -e -dependencies="glm glew sdl2 openvr x11 xcomposite xfixes mpv libxdo" +dependencies="glew sdl2 openvr x11 xcomposite xfixes mpv libxdo" includes=$(pkg-config --cflags $dependencies) libs="$(pkg-config --libs $dependencies) -lm -pthread" gcc -c src/window_texture.c -O2 -DNDEBUG $includes diff --git a/project.conf b/project.conf index 71351af..a28b585 100644 --- a/project.conf +++ b/project.conf @@ -5,7 +5,6 @@ version = "0.1.0" platforms = ["linux"] [dependencies] -glm = "0" glew = "2" sdl2 = "2" openvr = "1" |