Jump to content

Translations:Development/Tutorials/First program/KF5/47/en: Difference between revisions

From KDE TechBase
FuzzyBot (talk | contribs)
Importing a new version from external source
 
(No difference)

Latest revision as of 10:32, 11 March 2016

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development/Tutorials/First program/KF5)
# Find Qt modules
find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS 
   Core    # QCommandLineParser, QStringLiteral
   Widgets # QApplication 
)
  1. Find Qt modules

find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS

   Core    # QCommandLineParser, QStringLiteral
   Widgets # QApplication 

)