This website works better with JavaScript.
Home
Explore
Help
Sign In
modal-studios
/
izanagi-2022
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add build scripts for macOS
Include build scripts for generating CMake cache as well as building from ninja.
master
TheoryOfNekomata
1 year ago
parent
8c7de21298
commit
ebebba1fb9
3 changed files
with
9 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
00-build-cache-debug-x64
+3
-0
01-build-game
+3
-0
02-build-server
+ 3
- 0
00-build-cache-debug-x64
View File
@@ -0,0 +1,3 @@
#!/usr/bin/env sh
cmake -DPROJECT_SOURCE_DIR=. -DCMAKE_SIZEOF_VOID_P=8 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=ninja -DCMAKE_C_COMPILER=cc -DCMAKE_C_COMPILER_WORKS=1 -DCMAKE_C_FLAGS=-m64 -G Ninja -S . -B ./build/Debug
+ 3
- 0
01-build-game
View File
@@ -0,0 +1,3 @@
#!/usr/bin/env sh
cmake --build build/Debug -t game
+ 3
- 0
02-build-server
View File
@@ -0,0 +1,3 @@
#!/usr/bin/env sh
cmake --build build/Debug -t server
Write
Preview
Loading…
Cancel
Save