Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow compilation with qt6 #4

Merged
merged 1 commit into from
Jul 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,14 @@
build
.DS_Store
*.pro.user
.qmake.stash
Makefile
plugin/Makefile
plugin/libqofonoextdeclarative*.so*
src/Makefile
src/libqofonoext*.prl
src/libqofonoext*.so*
src/pkgconfig/
moc_*
*.o
*.moc
2 changes: 1 addition & 1 deletion plugin/plugin.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TARGET=qofonoextdeclarative
TEMPLATE = lib
CONFIG += plugin link_pkgconfig
PKGCONFIG += qofono-qt5
PKGCONFIG += qofono-qt$${QT_MAJOR_VERSION}
QMAKE_CXXFLAGS += -Wno-unused-parameter -Wno-psabi

QT_VERSION=$$[QT_VERSION]
Expand Down
2 changes: 1 addition & 1 deletion src/src.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TARGET = qofonoext
CONFIG += create_pc create_prl no_install_prl link_pkgconfig
PKGCONFIG += qofono-qt5
PKGCONFIG += qofono-qt$${QT_MAJOR_VERSION}

QT += dbus
QT -= gui
Expand Down