Skip to content

Commit

Permalink
update premake file to remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Dec 21, 2023
1 parent dd2bbef commit f5fd5e6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,15 @@ solution "netcode"
warnings "Extra"
staticruntime "On"
floatingpoint "Fast"
configuration "Debug"
filter "configurations:Debug"
symbols "On"
links { debug_libs }
defines { "NETCODE_DEBUG" }
configuration "Release"
filter "configurations:Release"
symbols "Off"
optimize "Speed"
defines { "NETCODE_RELEASE" }
links { release_libs }
configuration { "gmake2" }
linkoptions { "-lm" }

project "test"
files { "test.cpp" }
Expand Down Expand Up @@ -67,8 +65,6 @@ if os.ishost "windows" then
end
}

-- todo: create shortcuts here too for windows for consistency

else

-- MacOSX and Linux.
Expand Down

0 comments on commit f5fd5e6

Please sign in to comment.