diff options
| author | Barath Kannan <barathsotd@gmail.com> | 2016-11-02 18:47:40 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-02 18:47:40 +1100 |
| commit | de42c4597d928db9dc481d7184dcda3b2c879f63 (patch) | |
| tree | 12cbd5ba6a4be64fb5512693276b847456c991eb /tests/qt5/main.cpp | |
| parent | a79c348045f513de8fb24ffb12532c1b1a396c3c (diff) | |
| parent | b25c13c1551456dc89ca959c7133b1cc6117532e (diff) | |
| download | vcpkg-de42c4597d928db9dc481d7184dcda3b2c879f63.tar.gz vcpkg-de42c4597d928db9dc481d7184dcda3b2c879f63.zip | |
Merge pull request #1 from barcharcraz/barath-qt5-additions
made some qt5 fixes
Diffstat (limited to 'tests/qt5/main.cpp')
| -rw-r--r-- | tests/qt5/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/qt5/main.cpp b/tests/qt5/main.cpp new file mode 100644 index 000000000..cec294069 --- /dev/null +++ b/tests/qt5/main.cpp @@ -0,0 +1,9 @@ +#include <qsysinfo.h> +#include <qstring.h> +#include <cstdio> +int main(int argc, char** argv) { + auto buildABI = QSysInfo::buildAbi().toStdString(); + fprintf(stdout, "%s\n", buildABI.c_str()); + printf("%d\n", QSysInfo::windowsVersion()); + return 0; +}
\ No newline at end of file |
