diff options
author | Michael Shepanski <michael@codesynthesis.com> | 2014-10-16 16:11:41 +0200 |
---|---|---|
committer | Michael Shepanski <michael@codesynthesis.com> | 2014-10-16 16:11:41 +0200 |
commit | ff265813bccf264cae2caf83d319efb9fcf11e30 (patch) | |
tree | 1ba81ca3698feb1afbf80be05daec4cd4950496b | |
parent | 39e1eab9d379f393ea5e396b79762b4d3d1a84a9 (diff) |
Add support for Qt5 in build system
-rwxr-xr-x | build/import/libqt/configure | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/import/libqt/configure b/build/import/libqt/configure index cd02836..c78af91 100755 --- a/build/import/libqt/configure +++ b/build/import/libqt/configure @@ -48,7 +48,13 @@ else core_cppflags=`pkg-config --cflags QtCore` core_libs=`pkg-config --libs QtCore` + elif pkg-config --exists Qt5Core; then + + core_cppflags=`pkg-config --cflags Qt5Core` + core_libs=`pkg-config --libs Qt5Core` + else + $echo $echo "Unable to discover installed 'Qt libraries' using pkg-config." $echo "Assuming the C++ compiler will find them automatically." |