ise

Installation Guide for Running the Ise View Application

Notes

1. Linux

Prerequisites

Ensure the following dependencies are installed:

Installation Steps

  1. Install the required dependencies:
    • On Debian/Ubuntu-based systems:
      sudo apt update
      sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev build-essential
      
    • On Arch-based systems:
      sudo pacman -Syu gtk3 webkit2gtk base-devel
      

      Or

      sudo pamac install gtk3 webkit2gtk base-devel
      
    • On Fedora:
      sudo dnf install gtk3-devel webkit2gtk3-devel gcc
      
  2. Compile the application:
    gcc app.c -o app $(pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0)
    
  3. Run the application:
    ./app
    

2. Windows

Prerequisites

Installation Steps

  1. Install MSYS2 and update the package database:
    pacman -Syu
    
  2. Install GTK and WebKit2GTK:
    pacman -S mingw-w64-x86_64-gtk3 mingw-w64-x86_64-webkit2gtk
    
  3. Compile the application:
    gcc app.c -o app $(pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0)
    
  4. Run the application:
    ./app.exe
    

3. Android

Prerequisites

Installation Steps

  1. Install the Android NDK from Android Developers.
  2. Cross-compile GTK and WebKit2GTK for Android.
  3. Modify the Android.mk and Application.mk to include the application and dependencies.

  4. Build the application:
    ndk-build
    
  5. Install the APK on an Android device:
    adb install path/to/your.apk
    
  6. Run the app from the Android launcher.