This is the repository for Darkest Hour: Europe '44-'45. For more information, visit the Steam Store.
Before cloning this repository, all of the following requirements must be satisfied.
This game is a modification for Red Orchestra: Ostfront 41-45 and requires you to own the base game. You'll need to have the following apps installed:
Apart from the code files, the repository also contains asset packages (maps, textures, meshes, etc.), which are stored using Git Large File Storage. To clone it, you'll have to perform a few extra steps.
Before you continue, make sure you have at least 11GB of free disk space on the drive where Red Orchestra is installed on, as asset files are quite hefty.
cmd
, then pressing Ctrl+Shift+Enter.cd /d "%RODIR%"
git lfs install --skip-smudge
git clone https://github.com/DarklightGames/DarkestHour.git tmp
xcopy tmp . /e /h /y
rmdir /s /q tmp
git lfs pull
git lfs install --force
$ cd "$RODIR"
$ git lfs install --skip-smudge
$ git clone https://github.com/DarklightGames/DarkestHour.git tmp
$ cp -rf tmp/. .
$ rm -rf tmp
$ git lfs pull
$ git lfs install --force
After completing the steps above and successfully cloning the repository, you can:
%RODIR%/System/DarkestHourDev.bat
. %RODIR%/System/DHEd.bat
.Be aware that these batch files will compile the game's code files if necessary. Compilation can fail if there are errors in your code.