cmake: fix compilation with Qt 4

In qmake we define QStringLiteral=QLatin1String, so define it in cmake
builds too.
This commit is contained in:
Eugene Shalygin 2017-05-31 19:28:32 +02:00
parent d92ef3fa4d
commit 6a3e7a12d8

View file

@ -31,6 +31,7 @@ else (QT5)
endif (DBUS) endif (DBUS)
find_package(Qt4 4.8.0 COMPONENTS ${QBT_QT_COMPONENTS} REQUIRED) find_package(Qt4 4.8.0 COMPONENTS ${QBT_QT_COMPONENTS} REQUIRED)
include(${QT_USE_FILE}) include(${QT_USE_FILE})
add_definitions(-DQStringLiteral=QLatin1String)
endif (QT5) endif (QT5)
set(CMAKE_AUTOMOC True) set(CMAKE_AUTOMOC True)