0

I am following this tutorial, and the first command

qbs setup-qt /usr/bin/qmake qt

returns this error:

Cannot extract the mkspecs directory.

What is this trying to tell me, and is this something I need to fix?

Anon
  • 2,267
  • 3
  • 34
  • 51

1 Answers1

1

This is a fatal error that means the Qt profile could not be set up. It should never happen if Qt is correctly installed. What kind of Qt is this? Does it come from the distribution? What is the output of qmake -query?

  • The Qt I am building against is not installed by the ubuntu repos. Instead, it sits in `/home/Programming/Qt/...` ; Perhaps informing of its proper location will fix my issue... Thanks. The output is this: `qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory` ... which is also interesting... – Anon Jun 02 '18 at 20:04
  • Ok, that means Qt is not properly installed then. There's nothing qbs can do about that. – Christian Kandeler Jun 04 '18 at 07:55