Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.12 KB

File metadata and controls

47 lines (30 loc) · 1.12 KB

Building the game

  1. Install the dependencies:

  2. Download or clone the repository.

  3. Acquire the ChickenInvaders.dat file:

    1. Download the game (for free) on the official page.

    2. Install innoextract (website).

    3. Extract the installer content:

    innoextract ChickenInvadersInstaller.exe
    1. Locate the ChickenInvaders.dat file and move it in the Game/assets folder.
  4. (Optional) To enable Discord RPC integration, open the CMakeLists.txt file and change the WITH_DISCORD option from OFF to ON:

    option(WITH_DISCORD "Enable Discord integration" ON)
  5. Create a build directory and navigate into it:

    mkdir build
    cd build
  6. Run CMake to configure the project:

    cmake ..
  7. Build the project:

    cmake --build .