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.
to compile successfully with
./build.sh -nolibgit2 -j20 -without-qt-network -nopython -norubyI had to modify this section:
klayout/src/gsiqt/qt6/qt6.pro
Lines 34 to 37 in ec5de0f
to change
QtMultimedia.depends += QtCore QtWidgets QtNetworkto
it does work to show a OAS, so I don't think anything is broken, at least nothing immediately obvious.