fbb452f9bf
- A C++ module should set NO_CONFIG to flag that it doesn't have a config file (this is an error if it secretly **does** have one)
14 lines
300 B
CMake
14 lines
300 B
CMake
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
|
calamares_add_plugin( summary
|
|
TYPE viewmodule
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
SOURCES
|
|
SummaryViewStep.cpp
|
|
SummaryPage.cpp
|
|
UI
|
|
LINK_PRIVATE_LIBRARIES
|
|
calamaresui
|
|
SHARED_LIB
|
|
NO_CONFIG
|
|
)
|