update documentation qsk cmake namespace

This commit is contained in:
Rick Vogel 2024-01-12 10:11:18 +01:00 committed by uwerat
parent 5c12b18b87
commit 7e2e361637
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ add_executable(myapp
target_link_libraries(myapp PRIVATE target_link_libraries(myapp PRIVATE
Qt5::Widgets Qt5::Widgets
Qt5::Quick Qt5::Quick
QSkinny::QSkinny) Qsk::QSkinny)
.... ....
Now we can compile our app: Now we can compile our app:

View File

@ -23,7 +23,7 @@ slots or invokables can be used in QML. For example, the QSkinny control
.... ....
target_link_libraries(myapp PRIVATE target_link_libraries(myapp PRIVATE
... ...
QSkinny::QmlExport) Qsk::QmlExport)
... ...
.... ....