Wiki

This version is outdated by a newer approved version.DiffThis version (22 Jul 2020 13:56) was approved by Adrian Suciu.The Previously approved version (07 Nov 2018 17:12) is available.Diff

This is an old revision of the document!


Building Scopy on Linux

Installing the dependencies

Before building Scopy on Linux system, you need to make sure all the requirements are installed.


Install a Qt 5 version (>5.12) using an online or offline installer from the official Qt downloads page.


Install dependencies

    git clone https://github.com/analogdevicesinc/scopy.git
This will fetch the latest sources from GitHub to a “scopy” directory.

In order to install the dependencies run the following script:

Replace QMAKE=… from scopy/CI/appveyor/install_ubuntu_deps.sh with the <Qt installed location>/version/gcc_64/bin/qmake

    scopy/CI/appveyor/install_ubuntu_deps.sh
This should install all of the dependencies required to build Scopy.

Building Scopy

    cd scopy
    mkdir build && cd build
    cmake -DCMAKE_PREFIX_PATH=/home/adi/Qt/5.15.0/gcc_64/lib/cmake ../
Where -DCMAKE_PREFIX_PATH=path to the installed Qt version If everything goes well, the output should be “Configuring done” and “Generating done”.

Now build the project:

    make
And run Scopy:
    ./scopy

Alternatively you can open QtCreator from the Qt folder. Open, configure and build the project.

Return to Scopy Main Page

university/tools/m2k/scopy/build-linux.1595418996.txt.gz · Last modified: 22 Jul 2020 13:56 by Adrian Suciu