mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 18:58:55 +01:00
25 lines
378 B
CMake
25 lines
378 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
set(SOURCES
|
|
fancytabwidget.cpp
|
|
styledbar.cpp
|
|
stylehelper.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
fancytabwidget.h
|
|
styledbar.h
|
|
)
|
|
|
|
qt4_wrap_cpp(MOC ${HEADERS})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_library(fancytabwidget STATIC
|
|
${SOURCES}
|
|
${MOC}
|
|
)
|
|
target_link_libraries(fancytabwidget
|
|
${QT_LIBRARIES}
|
|
)
|