Files
KDDockWidgets/examples/dockwidgets/CMakeLists.txt
Sergio Martins 9504a728d4 Rename basic_external to dockwidgets
This will be our main example now
2019-10-06 13:29:40 +01:00

22 lines
439 B
CMake

cmake_minimum_required(VERSION 3.0)
project(docks_example)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIRS ON)
# This will look for Qt, do find_package yourself manually before
# if you want to look for a specific version for instance.
find_package(KDDockWidgets REQUIRED)
add_executable(docks_example
main.cpp
ExampleDockableWidget.cpp
)
target_link_libraries(docks_example
PRIVATE
KDAB::kddockwidgets
)