From c370516c7ef8342f58f770fa293d9f650e4f1b7e Mon Sep 17 00:00:00 2001 From: codinablack Date: Thu, 28 Nov 2024 19:30:52 -0600 Subject: [PATCH] Implement workflow build fix for dependencies. Co-Authored-By: jordanhoare --- premake5.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index 7580c676..4d2d384d 100644 --- a/premake5.lua +++ b/premake5.lua @@ -68,14 +68,14 @@ workspace "Black-Tek-Server" -- Paths to vcpkg installed dependencies libdirs { "vcpkg_installed/arm64-linux/lib" } includedirs { "vcpkg_installed/arm64-linux/include" } - links { "pugixml", "lua", "fmt", "ssl", "mariadb", "cryptopp", "crypto", "boost_iostreams", "zstd", "z", "curl", "tomlplusplus", "ssl" } + links { "pugixml", "lua", "fmt", "mariadb", "cryptopp", "boost_iostreams", "zstd", "z", "curl", "tomlplusplus", "ssl", "crypto" } filter{} filter { "system:linux", "architecture:amd64" } -- Paths to vcpkg installed dependencies libdirs { "vcpkg_installed/x64-linux/lib" } includedirs { "vcpkg_installed/x64-linux/include" } - links { "pugixml", "lua", "fmt", "ssl", "mariadb", "cryptopp", "crypto", "boost_iostreams", "zstd", "z", "curl", "tomlplusplus", "ssl" } + links { "pugixml", "lua", "fmt", "mariadb", "cryptopp", "boost_iostreams", "zstd", "z", "curl", "tomlplusplus", "ssl", "crypto" } filter{} filter "toolset:gcc"