15 lines
245 B
Bash
Executable File
15 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf build &&
|
|
mkdir build &&
|
|
cd build &&
|
|
|
|
echo "Running cmake with build type Debug."
|
|
cmake -Wall -DCMAKE_PREFIX_PATH=$HOME/Qt/5.15.14/gcc_64/ \
|
|
-G "Unix Makefiles" \
|
|
-DCMAKE_BUILD_TYPE=Debug .. &&
|
|
|
|
make &&
|
|
|
|
./build/qml-example
|