# Generated from texteditor.pro.

cmake_minimum_required(VERSION 3.16)
project(texteditor LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

if(NOT DEFINED INSTALL_EXAMPLESDIR)
  set(INSTALL_EXAMPLESDIR "examples")
endif()

set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/quickcontrols2/texteditor")

find_package(Qt6 COMPONENTS Core Gui Quick QuickControls2)
find_package(Qt6 COMPONENTS Widgets)

qt_add_executable(texteditor WIN32 MACOSX_BUNDLE
    documenthandler.cpp
    texteditor.cpp
)

target_link_libraries(texteditor PUBLIC
    Qt::Core
    Qt::Gui
    Qt::Quick
    Qt::QuickControls2
)


# Resources:
set(texteditor_resource_files
    "+touch/texteditor.html"
    "fonts/fontello.ttf"
    "images/qt-logo.png"
    "qml/+touch/texteditor.qml"
    "qml/texteditor.qml"
    "texteditor.html"
)

qt6_add_resources(texteditor "texteditor"
    PREFIX
        "/"
    FILES
        ${texteditor_resource_files}
)

if(TARGET Qt::Widgets)
    target_link_libraries(texteditor PUBLIC
        Qt::Widgets
    )
endif()

if(CMAKE_CROSSCOMPILING)
    target_compile_definitions(texteditor PUBLIC
        QT_EXTRA_FILE_SELECTOR="touch" # special case
    )
endif()

install(TARGETS texteditor
    RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
    BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
    LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)
