Update: I downloaded the files it needed and compiled, but I received another error:
Running project pre-build steps
cmd /c git --version || echo ‘git’ command not found!
‘git’ is not recognized as an internal or external command,
operable program or batch file.
‘git’ command not found!
cmd /c git describe --tags --always --dirty > version.tmp || echo no-git> version.tmp
’git’ is not recognized as an internal or external command,
operable program or batch file.
cmd /c for /F “tokens=*” %i in (version.tmp) do echo #define VERSION “%i” > src/version.h
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master>echo #define VERSION “no-git” 1>src/version.h
cmd /c del version.tmp
-------------- Build: Release in Cataclysm (compiler: GNU GCC Compiler)---------------
mingw32-g++.exe -Wextra -Wall -std=c++11 -DCB_BUILD -D_WINDOWS -D_MINGW -D_WIN32 -DWIN32 -D__MINGW__ -Os -O2 -DRELEASE=1 -c C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\action.cpp -o obj\Release\src\action.o
In file included from C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\rng.h:5:0,
from C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\map.h:19,
from C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\action.cpp:7:
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h: In function ‘std::__cxx11::string to_string(long int)’:
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h:35:38: error: ‘snprintf’ was not declared in this scope
snprintf( buffer, size, “%ld”, n );
^
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h: In function ‘std::__cxx11::string to_string(int)’:
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h:44:37: error: ‘snprintf’ was not declared in this scope
snprintf( buffer, size, “%d”, n );
^
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h: In function ‘std::__cxx11::string to_string(unsigned int)’:
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h:53:37: error: ‘snprintf’ was not declared in this scope
snprintf( buffer, size, “%u”, n );
^
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h: In function ‘std::__cxx11::string to_string(double)’:
C:\Users\Cael\Downloads\Cataclysm\Cataclysm-DDA-master(1)\Cataclysm-DDA-master\src\compatibility.h:62:37: error: ‘snprintf’ was not declared in this scope
snprintf( buffer, size, “%f”, n );
^
Process terminated with status 1 (0 minute(s), 32 second(s))
4 error(s), 0 warning(s) (0 minute(s), 32 second(s))
Please help!