We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640aee9 commit a33339eCopy full SHA for a33339e
.github/workflows/build.yml
@@ -99,5 +99,5 @@ jobs:
99
gitup
100
101
run: |
102
- cmake -GNinja -B build -DCMAKE_C_FLAGS="-I/usr/local/include -L/usr/local/lib" -DCMAKE_CXX_FLAGS="-I/usr/local/include -L/usr/local/lib"
+ cmake -GNinja -B build
103
cmake --build build
CMakeLists.txt
@@ -86,6 +86,12 @@ add_compile_options(-Wall -Wextra -Wno-vla-cxx-extension)
86
# pipewire defines this, breaking PCH
87
add_compile_definitions(_REENTRANT)
88
89
+# FreeBSD specific include/link dirs
90
+if (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
91
+ include_directories(/usr/local/include)
92
+ link_directories(/usr/local/lib)
93
+endif()
94
+
95
if (FRAME_POINTERS)
96
add_compile_options(-fno-omit-frame-pointer)
97
endif()
0 commit comments