Files
KDDockWidgets/examples/custom_titlebar/CMakeLists.txt
2019-08-08 16:03:59 +01:00

11 lines
277 B
CMake

project(custom_titlebar)
set(CUSTOMTITLEBAR_SRC main.cpp)
include_directories(${CMAKE_SOURCE_DIR}/src/)
add_executable(custom_titlebar ${CUSTOMTITLEBAR_SRC})
target_link_libraries(custom_titlebar kddockwidgets Qt5::Widgets)
install(TARGETS custom_titlebar DESTINATION bin)