Building Installer or Executable Binaries for Drifty
Generating GraalVM Metadata
This step is required only if you want to see your changes reflected in Drifty CLI or GUI executables. If you are only interested in building the installer or executable binaries, you can skip this step.
Prerequisites
- Java 21 
- Download  and install  Maven (Maven v3.8.8 is required for generating GraalVM metadata for Drifty GUI)
- GraalVM 21 
Steps
- Open the terminal and navigate to the project directory
- Follow the below instructions to generate GraalVM metadata for Drifty CLI or GUI
- For Drifty GUI,
- Navigate to the
GUI
directorycd GUI
- Run the below command to generate GraalVM metadata for Drifty GUI
mvn gluonfx:runagent
- Navigate to the
- For Drifty CLI,
- Navigate to the
CLI
directorycd CLI
- Run the below command to generate GraalVM metadata for Drifty CLI
mvn -P generate-graalvm-metadata exec:exec@java-agent
- Navigate to the
- For Drifty GUI,
- Upon completion of the command, the GraalVM metadata will be generated in
src/main/resources/META-INF/native-image
directory of the respective project (GUI
orCLI
) directory.
Local Build
Prerequisites
- Java 21 
- Download  and install  Maven (Maven v3.8.8 is required for building installer or executable binaries for Drifty GUI, locally)
- GraalVM 21 
- GCC 
Steps
Check if GraalVM is added to the system path by running native-image --version
in the terminal.
If the command is not recognized, add the GraalVM bin
directory to the system path.
PATH=$GRAALVM_HOME/bin
Set the following environment variable to point to your GraalVM installation directory.
GRAALVM_HOME=<path-to-graalvm>
Replace <path-to-graalvm>
with the actual path to the GraalVM installation directory.
- Open the terminal and navigate to the project directory
- Assuming you have installed the necessary project dependencies, run the below command to generate the C object file required only for building executable binaries for Drifty GUI
- For Linux,
gcc -c config/missing_symbols.c -o config/missing_symbols-ubuntu-latest.o
- For Windows,
gcc -c config/missing_symbols.c -o config/missing_symbols-windows-latest.o
- For macOS,
Replace
gcc -c config/missing_symbols.c -o config/missing_symbols-macos-latest.o
gcc
with the path to the GCC compiler if it is not in the system path.
- For Linux,
- Run the below command to build the installer or executable binaries
GUI
- For Linux,
mvn -P build-drifty-gui-for-ubuntu-latest gluonfx:build gluonfx:package -rf :GUI -U
- For Windows,
mvn -P build-drifty-gui-for-windows-latest gluonfx:build gluonfx:package -rf :GUI -U
- For macOS,
mvn -P build-drifty-gui-for-macos-latest gluonfx:build gluonfx:package -rf :GUI -U
- Upon completion of the build, the installer or executable binaries will be neatly organized in the directories listed below. The placeholder
{arch}
should be replaced with eitherx86_64
oraarch64
, depending on your system’s architecture.
GUI
- For Linux,
GUI/target/gluonfx/{arch}-linux
- For Windows,
GUI/target/gluonfx/{arch}-windows
- For macOS,
GUI/target/gluonfx/{arch}-mac
- You can now run the installer or executable binaries to use the application.
- To remove the generated files, run the below command
mvn clean