Skip to content

ugeneunipro/ugene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 12, 2025
9ec2314 · Feb 12, 2025
Dec 30, 2020
Jan 13, 2025
Apr 26, 2024
Oct 22, 2020
Jan 14, 2025
Feb 12, 2025
Jan 27, 2025
Feb 13, 2022
Feb 4, 2025
Apr 28, 2021
Feb 4, 2025
Sep 17, 2022
Feb 29, 2016
Jan 21, 2025
Oct 9, 2020
Oct 2, 2022
Jul 8, 2023

Repository files navigation

UGENE

Download UGENE: https://ugeneunipro.github.io/ugene/

Building UGENE

Prerequisites

Qt 5.15.x with the following components installed via the Qt installer:

  • Desktop
  • QtScript

Build

  1. Set the Qt5_DIR system environment variable to point to the Qt 5 installation directory.
  2. Run the following commands based on your operating system:
    • Linux & macOS:
      cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" -S . -B "../build-ugene-release"
      cmake --build "../build-ugene-release" -- -j 4
      
    • Windows:
      cmake -DCMAKE_CONFIGURATION_TYPES=Release -G "Visual Studio 16 2019" -S . -B "../build-ugene-release"
      cmake --build "../build-ugene-release" --parallel --config Release
      

For more details, please check the build.sh files in the etc/scripts directory.