mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-17 07:57:43 +02:00
The Qt version is too old to support the vnc QPA platform - which is needed for the GUI tests to run.
10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
mkdir -p /fwbuilder/build
|
|
cd /fwbuilder/build
|
|
cmake .. -DCMAKE_BUILD_TYPE=Debug
|
|
make -j$(nproc)
|
|
make install
|