Skip to content

silicon-heaven/shvapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shvapp

Beginner's guide

Build

Use -DCMAKE_PREFIX_PATH:PATH=/path/to/qt/gcc_64 only if you do not want to use system Qt.

Qt6

git clone https://github.com/silicon-heaven/shvapp.git
cd shvapp
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH:PATH=/path/to/qt/gcc_64 ..
cmake --build .
cmake --install . --prefix /dir/to/install

Qt5

git clone https://github.com/silicon-heaven/shvapp.git
cd shvapp
mkdir build
cd build
cmake -DSHV_USE_QT6=OFF -DLIBSHV_USE_QT6=OFF -DCMAKE_PREFIX_PATH:PATH=/path/to/qt/gcc_64 ..
cmake --build .
cmake --install . --prefix /dir/to/install