pantry/projects/qt.io/main.cpp
Andrew 557902a281
qt.io/qt5 (#3545)
* +

* 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>
2023-10-20 13:04:43 -04:00

9 lines
165 B
C++

#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << "Hello World!";
return 0;
}