diff options
author | jfons <joan.fonssanchez@gmail.com> | 2021-05-04 12:06:54 +0200 |
---|---|---|
committer | jfons <joan.fonssanchez@gmail.com> | 2021-05-04 17:21:41 +0200 |
commit | 575543ce5359a21357d7760b18f9f4e5f9919c57 (patch) | |
tree | 60f01f5b67dd64181909a5f7d9f90ac6f10a251e /platform/linuxbsd | |
parent | b5e4d63a0b8db639af54d97ad88aae143e0000da (diff) |
Port changes to the "raycast" module build files from 3.x
Diffstat (limited to 'platform/linuxbsd')
-rw-r--r-- | platform/linuxbsd/detect.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index adbbcaac31..1876960c57 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -325,6 +325,10 @@ def configure(env): if not env["builtin_pcre2"]: env.ParseConfig("pkg-config libpcre2-32 --cflags --libs") + if not env["builtin_embree"]: + # No pkgconfig file so far, hardcode expected lib name. + env.Append(LIBS=["embree3"]) + ## Flags if os.system("pkg-config --exists alsa") == 0: # 0 means found |