Skip to content

Instantly share code, notes, and snippets.

@ScottDillman
Last active June 26, 2016 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ScottDillman/0124483caa469fdc10f8425bdd261c16 to your computer and use it in GitHub Desktop.
Save ScottDillman/0124483caa469fdc10f8425bdd261c16 to your computer and use it in GitHub Desktop.
Build AtomicGameEngine from source on Windows in 10 Easy Steps
Build AtomicGameEngine from source on Windows in 10 Easy Steps
I. From a fresh Windows install
A. [ Install build tools ] Run the following in an admin console:
01. @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH% ; %ALLUSERSPROFILE% \chocolatey\bin
02. Restart admin shell:
03. cinst vcbuildtools git.install cmake.install
B. [Get sources] Run the following in a normal user console:
04. cd %USERPROFILE%
05. mkdir atomic
06. git clone --recursive https://github.com/AtomicGameEngine/AtomicGameEngine.git
07. set path=c:\Program Files (x86)\CMake\bin;%PATH%
08. "c:\Program Files (x86)\Microsoft Visual C++ Build Tools\vcbuildtools.bat"
09. cd %USERPROFILE%\atomic\AtomicGameEngine
10. Build_AtomicEditor.bat
II. To update source to latest and rebuild
01. "c:\Program Files (x86)\Microsoft Visual C++ Build Tools\vcbuildtools.bat"
02. cd %USERPROFILE%\atomic\AtomicGameEngine
03. git pull
04. set path=c:\Program Files (x86)\CMake\bin;%PATH%
05. Build_AtomicEditor.bat
Editor exe will be located in %USERPROFILE%\atomic\AtomicGameEngine\Artifacts\AtomicEditor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment