mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-23 00:09:14 +01:00
a4e362b9f7
One usage of the macro remains in the bundled libmygpo-qt5. This should be updated once the pending upstream fix was merged. qtsingleapplication is already fixed upstream.
19 lines
357 B
CMake
19 lines
357 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
set(IOCOMPRESSOR-SOURCES
|
|
qtiocompressor.cpp
|
|
)
|
|
|
|
set(IOCOMPRESSOR-MOC-HEADERS
|
|
qtiocompressor.h
|
|
)
|
|
|
|
QT5_WRAP_CPP(IOCOMPRESSOR-SOURCES-MOC ${IOCOMPRESSOR-MOC-HEADERS})
|
|
|
|
ADD_LIBRARY(qtiocompressor STATIC
|
|
${IOCOMPRESSOR-SOURCES}
|
|
${IOCOMPRESSOR-SOURCES-MOC}
|
|
)
|
|
|
|
target_link_libraries(qtiocompressor Qt5::Core)
|