mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
CMake
17 lines
346 B
CMake
if( NOT WITH_QML )
|
|
calamares_skip_module( "notesqml (QML is not supported in this build)" )
|
|
return()
|
|
endif()
|
|
|
|
calamares_add_plugin( notesqml
|
|
TYPE viewmodule
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
SOURCES
|
|
NotesQmlViewStep.cpp
|
|
RESOURCES
|
|
notesqml.qrc
|
|
LINK_PRIVATE_LIBRARIES
|
|
calamaresui
|
|
SHARED_LIB
|
|
)
|