From da55b1f9787ff54aae90be3fb578ab1dac83ee43 Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Tue, 26 Dec 2023 11:10:51 -0500 Subject: [PATCH] i have no idea --- .github/workflows/ci.yml | 2 +- premake5.lua | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f3771b9..d47b6189 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Build (gmake) if: runner.os != 'Windows' run: | - premake5 gmake2 + premake5 gmake make clean make all config=${{ matrix.configuration }} diff --git a/premake5.lua b/premake5.lua index 8065915c..65692ff1 100644 --- a/premake5.lua +++ b/premake5.lua @@ -33,14 +33,13 @@ project "sodium-test" } filter { "action:gmake" } buildoptions { "-Wno-unused-parameter", "-Wno-unused-function", "-Wno-unknown-pragmas", "-Wno-unused-variable", "-Wno-type-limits" } - filter { "action:gmake2" } - buildoptions { "-Wno-unused-parameter", "-Wno-unused-function", "-Wno-unknown-pragmas", "-Wno-unused-variable", "-Wno-type-limits" } project "netcode" kind "StaticLib" language "C" defines { "NETCODE_ENABLE_TESTS=1" } files { "netcode/netcode.c", "netcode/netcode.h" } + links { "sodium-test", "tlsf", "reliable" } project "reliable" kind "StaticLib"