mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-08 06:43:00 +01:00
15 lines
198 B
CMake
15 lines
198 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(QTWIN-SOURCES
|
|
qtwin.cpp
|
|
)
|
|
|
|
ADD_LIBRARY(qtwin STATIC
|
|
${QTWIN-SOURCES}
|
|
)
|
|
|
|
target_link_libraries(qtwin
|
|
Qt5::Widgets
|
|
)
|