Skip to content

Commit

Permalink
Implement workflow build fix for dependencies.
Browse files Browse the repository at this point in the history
Co-Authored-By: jordanhoare <[email protected]>
  • Loading branch information
Codinablack and jordanhoare committed Nov 29, 2024
1 parent 749dc2d commit c370516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c370516

Please sign in to comment.