TheoryOfNekomata 6608b18a13 | 1年前 | |
---|---|---|
__mocks__ | 1年前 | |
__tests__/src/packages/game | 1年前 | |
assets/internal/default | 1年前 | |
assets_src | 1年前 | |
docs | 1年前 | |
src/packages | 1年前 | |
subprojects | 1年前 | |
tools | 1年前 | |
.editorconfig | 2 年前 | |
.gitignore | 1年前 | |
.gitmodules | 1年前 | |
00-generate-cmake-cache-x64 | 1年前 | |
00-generate-cmake-cache-x64.bat | 1年前 | |
01-build-executable | 1年前 | |
01-build-executable.bat | 1年前 | |
CMakeLists.txt | 1年前 | |
README.md | 1年前 | |
TODO.md | 1年前 |
A run-and-gun shooter inspired by Metal Slug and Counter-Strike.
For Windows, it is recommended to use Chocolatey for retrieving the required tools. Use Homebrew for macOS instead.
For *NIX, use whatever dependency manager you prefer.
The following are required for building on all platforms:
Install the Windows SDK.
Ensure your environment variables are set up.
Important: Set your
CC
environment variable to the full path ofclang-cl.exe
Important: Set your
CMAKE_MT
environment variable to the full path ofmt.exe
, which can be found on your Windows SDK installation folder (usuallyC:/Program Files (x86)/Windows Kits/10/bin/10.0.19041.0/x86/mt.exe
)
Clone this repo recursively.
Build the dependencies under subprojects
. Follow the instructions on building for Visual C.
Important: For
libwebsockets
, follow the instructions on building LWS.
Generate the CMake cache.
cmake^
-DCMAKE_SIZEOF_VOID_P=8^
"-DCMAKE_MT=%CMAKE_MT%"^
"-DCMAKE_BUILD_TYPE=%BUILD_TYPE%"^
-DCMAKE_MAKE_PROGRAM=ninja^
-DCMAKE_C_COMPILER=clang-cl^
-DCMAKE_C_FLAGS=-m64^
-G Ninja^
-S .^
-B "./build/%BUILD_TYPE%"
Important: Create the directories under
/build
per eachBUILD_TYPE
you are generating.
Build the specific executables you want to build, which are defined in CMakeLists.txt
.
cmake^
--build "./build/%BUILD_TYPE%"^
-t "%EXECUTABLE%"
Ensure additional tools are present in the system:
autoconf
make
libtool
(*NIX only)Clone this repo recursively.
Build the dependencies under subprojects
. Follow the instructions on building for *NIX (macOS should have similar
instructions for *NIX).
Generate the CMake cache.
cmake \
-DCMAKE_SIZEOF_VOID_P=8 \
"-DCMAKE_BUILD_TYPE=$BUILD_TYPE" \
-DCMAKE_MAKE_PROGRAM=ninja \
-DCMAKE_C_COMPILER=cc \
-DCMAKE_C_FLAGS=-m64 \
-G Ninja \
-S . \
-B "./build/$BUILD_TYPE"
Important: Create the directories under
/build
per eachBUILD_TYPE
you are generating.
Build the specific executables you want to build, which are defined in CMakeLists.txt
.
cmake \
--build "./build/$BUILD_TYPE" \
-t "$EXECUTABLE"