mirror of https://github.com/qt/qtbase.git
29 lines
609 B
CMake
29 lines
609 B
CMake
# Generated from tutorial1.pro.
|
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(tutorial1 LANGUAGES CXX)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
set(INSTALL_EXAMPLEDIR "examples")
|
|
|
|
find_package(Qt5 COMPONENTS Widgets)
|
|
find_package(Qt5 COMPONENTS Test)
|
|
|
|
add_qt_gui_executable(tutorial1
|
|
testqstring.cpp
|
|
)
|
|
target_link_libraries(tutorial1 PUBLIC
|
|
Qt::Test
|
|
Qt::Widgets
|
|
)
|
|
install(TARGETS tutorial1
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|