Skip to content

Compiling with QT6 and -without-qt-network #2160

@nmz787-intel

Description

@nmz787-intel

to compile successfully with ./build.sh -nolibgit2 -j20 -without-qt-network -nopython -noruby

I had to modify this section:

!equals(HAVE_QT_MULTIMEDIA, "0") {
SUBDIRS += QtMultimedia
QtMultimedia.depends += QtCore QtWidgets QtNetwork
}

to change
QtMultimedia.depends += QtCore QtWidgets QtNetwork

to

  QtMultimedia.depends += QtCore QtWidgets
  !equals(HAVE_QT_NETWORK, "0") {
    QtMultimedia.depends += QtNetwork
  }

it does work to show a OAS, so I don't think anything is broken, at least nothing immediately obvious.

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions