mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 09:28:36 +00:00
8 lines
191 B
Bash
8 lines
191 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
g++ -g -fPIC ../binding.cpp testapp.cpp $(pkg-config --cflags --libs Qt5Widgets) -o testapp
|
||
|
|
||
|
g++ -g -fPIC direct.cpp $(pkg-config --cflags --libs Qt5Widgets) -o direct
|