mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
c53be0e97d
* Modernised CMake build files and CI configs Fixed include formats * Fixed build errors and warnings * Fixes to allow CMake find_package
26 lines
978 B
CMake
26 lines
978 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
project(ads_example_simple VERSION ${VERSION_SHORT})
|
|
find_package(Qt5 5.5 COMPONENTS Core Gui Widgets REQUIRED)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
add_executable(SimpleExample WIN32
|
|
main.cpp
|
|
MainWindow.cpp
|
|
MainWindow.ui
|
|
)
|
|
target_include_directories(SimpleExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src")
|
|
target_link_libraries(SimpleExample PRIVATE qtadvanceddocking)
|
|
target_link_libraries(SimpleExample PUBLIC Qt5::Core Qt5::Gui Qt5::Widgets)
|
|
set_target_properties(SimpleExample PROPERTIES
|
|
AUTOMOC ON
|
|
AUTORCC ON
|
|
AUTOUIC ON
|
|
CXX_STANDARD 14
|
|
CXX_STANDARD_REQUIRED ON
|
|
CXX_EXTENSIONS OFF
|
|
VERSION ${VERSION_SHORT}
|
|
EXPORT_NAME "Qt Advanced Docking System Simple Example"
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib"
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib"
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/bin"
|
|
)
|