2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
219 B

  1. #!/usr/bin/env sh
  2. cmake \
  3. -DCMAKE_SIZEOF_VOID_P=8 \
  4. -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
  5. -DCMAKE_MAKE_PROGRAM=ninja \
  6. -DCMAKE_C_COMPILER=cc \
  7. -DCMAKE_C_FLAGS=-m64 \
  8. -G Ninja \
  9. -S . \
  10. -B ./build/$BUILD_TYPE