-
Install the dependencies:
- CMake
- A C++23 compatible compiler.
-
Download or clone the repository.
-
Acquire the
ChickenInvaders.datfile:-
Download the game (for free) on the official page.
-
Install
innoextract(website). -
Extract the installer content:
innoextract ChickenInvadersInstaller.exe
- Locate the
ChickenInvaders.datfile and move it in theGame/assetsfolder.
-
-
(Optional) To enable Discord RPC integration, open the
CMakeLists.txtfile and change theWITH_DISCORDoption fromOFFtoON:option(WITH_DISCORD "Enable Discord integration" ON)
-
Create a build directory and navigate into it:
mkdir build cd build -
Run CMake to configure the project:
cmake ..
-
Build the project:
cmake --build .