2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
207 B

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