mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
557902a281
* + * deps * . * wip * provides * qt => qt5 * wip * fix args * qt5 => qt * rebuilt zstd; try llvm * wip * flags * add c/xx/ldflags * maybe? * maybe this? * last try * skip version tagging * i think based on what i learned with libtirpc, this is it. * std::move is c++11 * waiting for this to build is SO BORING, so I'm pushing it to CI. * llvm <16 * add CXXFLAGS * use LFLAGS * -ldl on linux * unicode/debugging * missing executables * CC | CXX | LD on linux * llvm * wip * make --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
9 lines
165 B
C++
9 lines
165 B
C++
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
qDebug() << "Hello World!";
|
|
return 0;
|
|
} |