The tool we use to pull changes from GitHub and install it where we need to
Go to file
2024-09-02 08:52:29 +02:00
.github build: remove x64 from macOS 2024-09-02 08:48:53 +02:00
deps build(deps): bump deps/zlib from 545f194 to d476828 2024-09-02 06:49:42 +00:00
src maint(file_updater): cURL 2024-06-21 20:55:20 +02:00
.gitignore init 2024-01-13 22:57:08 +01:00
.gitmodules fix: address a potential memory leak 2024-04-01 19:05:29 +02:00
LICENSE init 2024-01-13 22:57:08 +01:00
premake5.lua build: experiment with arm64 on Windows (#17) 2024-03-04 11:49:07 +01:00
README.md fix: address a potential memory leak 2024-04-01 19:05:29 +02:00

build

AlterWare: Installer

This is the tool we use to pull changes made from the release page of some of our clients and install it where we need to.

Build

  • Install Premake5 and add it to your system PATH
  • Clone this repository using Git
  • Update the submodules using git submodule update --init --recursive
  • Run Premake with either of these two options premake5 vs2022 (for Windows) or premake5 gmake2 (for Linux/macOS)
    • On Windows, build the project via the solution file in build\aw-installer.sln
    • On Linux/macOS, build the project using Make via the Makefile located in the build folder

IMPORTANT Requirements for Unix systems:

  • Compilation: Please use Clang
  • Dependencies: Ensure the LLVM C++ Standard library is installed
  • Alternative compilers: If you opt for a different compiler such as GCC, use the Mold linker
  • Customization: Modifications to the Premake5.lua script may be required
  • Platform support: Details regarding supported platforms are available in build.yml