about summary refs log tree commit diff
path: root/premake5.lua
diff options
context:
space:
mode:
authorPjotr Prins2025-11-25 14:38:44 +0100
committerPjotr Prins2025-11-25 14:38:44 +0100
commitbe88d7a399660f3c4ddd6bce502f5b39c61b3298 (patch)
tree708638e5f2e97c746659414944196121409264de /premake5.lua
parentf03c82ea21acda54de8cced07ba8150cfafb3769 (diff)
downloadpangemma-be88d7a399660f3c4ddd6bce502f5b39c61b3298.tar.gz
Fixing openblas regression by bringing in optimized package
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 1091cd8..3ccbdbc 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -39,10 +39,14 @@ workspace "PanGemma"
 
    filter "configurations:Debug"
       defines { "DEBUG" }
+      buildoptions { pkg_cpp_flags }
+      linkoptions { pkg_linker_flags }
       symbols "On"
 
    filter "configurations:Release"
       defines { "NDEBUG", "HAVE_INLINE" }
+      buildoptions { pkg_cpp_flags }
+      linkoptions { pkg_linker_flags }
       buildoptions { "-pthread", "-Wall" }
       optimize "Speed"