mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-01-10 23:24:00 +01:00
14 lines
171 B
CMake
14 lines
171 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
set(QTWIN-SOURCES
|
|
qtwin.cpp
|
|
)
|
|
|
|
ADD_LIBRARY(qtwin STATIC
|
|
${QTWIN-SOURCES}
|
|
)
|
|
|
|
target_link_libraries(qtwin
|
|
Qt5::Widgets
|
|
)
|