Stazed / non-timeline-xt

Non-Timeline with some eXTras
GNU General Public License v2.0
3 stars 2 forks source link

Non-Timeline-XT

Screenshot

screenshot

Non-Timeline-XT is a reboot of original Non-Timeline with some eXTras.

Beginning with version 2.0.0 the default build will use the FLTK library instead of NTK.

Non-Timeline-XT build instructions:

Dependencies :

For fltk build:

For NTK build:

Other Dependencies:

Getting submodules (nonlib and FL):

    git submodule update --init

Getting NTK:

Your distribution will likely have NTK available. If not then you can get NTK at:

    git clone https://github.com/linuxaudio/ntk

Build Non-Timeline-XT:

For cmake build:

    mkdir build
    cd build
    cmake ..
    make
    sudo make install

To uninstall:

    sudo make uninstall

To build with NTK:

    mkdir build
    cd build
    cmake -DEnableNTK=ON ..
    make
    sudo make install

For package maintainers, if you are building generic binary packages to be used on different architectures, then NativeOptimizations must be disabled:

    cmake -DNativeOptimizations=OFF ..