Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Dec 24, 2023
1 parent 358f38f commit f528298
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [macos-latest] # [ubuntu-latest, windows-latest, macos-latest]
configuration: [release, debug]

runs-on: ${{ matrix.os }}
Expand Down
14 changes: 2 additions & 12 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Once you have Visual Studio installed, go to the command line under the yojimbo

premake5 vs2019

Open the generated Yojimbo.sln file.
Open the generated yojimbo.sln file.

You can now build the library and run individual test programs as you would for any other Visual Studio solution.

Expand All @@ -30,18 +30,8 @@ This creates makefiles which you can use to build the source via:
Then run the built executables:

./bin/test // run unit tests
./bin/client // run a client that connects to the local server
./bin/server // run a server on localhost on UDP port 40000

## Documentation and Support

**yojimbo** now has reference documentation built from code comments with [doxygen](http://www.stack.nl/~dimitri/doxygen/).

To build the documentation first install doxygen on your platform.

Once you have doxygen installed and in your path, you can build and view the documentation with this command:

premake5 docs
./bin/client // run a client that connects to the local server

cheers

Expand Down
5 changes: 2 additions & 3 deletions premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ solution "Yojimbo"
language "C++"
configurations { "Debug", "Release" }
includedirs { ".", "sodium", "tlsf", "netcode", "reliable" }
if os.istarget "windows" then
libdirs { "./windows" }
else
if not os.istarget "windows" then
targetdir "bin/"
end
rtti "Off"
Expand All @@ -24,6 +22,7 @@ solution "Yojimbo"

project "sodium"
kind "StaticLib"
language "C"
files {
"sodium/**.c",
"sodium/**.h",
Expand Down

0 comments on commit f528298

Please sign in to comment.