2017-06-12 11:14:27 +02:00
|
|
|
find_package(ECM 5.10.0 REQUIRED NO_MODULE)
|
2014-07-05 23:28:13 +02:00
|
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_MODULE_PATH})
|
|
|
|
|
2017-07-11 12:24:12 +02:00
|
|
|
include(KDEInstallDirs)
|
|
|
|
include(GenerateExportHeader)
|
2014-07-05 23:28:13 +02:00
|
|
|
find_package( KF5 REQUIRED CoreAddons )
|
2014-07-03 18:00:40 +02:00
|
|
|
|
2015-07-01 18:57:09 +02:00
|
|
|
# These are needed because KPMcore links publicly against ConfigCore, I18n, IconThemes, KIOCore and Service
|
|
|
|
find_package( KF5 REQUIRED Config I18n IconThemes KIO Service )
|
|
|
|
|
2017-09-13 13:01:19 +02:00
|
|
|
find_package( KPMcore 3.1.50 QUIET )
|
2017-09-03 21:45:24 +02:00
|
|
|
if ( ${KPMcore_FOUND} )
|
|
|
|
add_definitions(-DWITH_KPMCORE22)
|
|
|
|
endif()
|
2017-06-12 12:35:26 +02:00
|
|
|
find_package( KPMcore 3.0.3 REQUIRED )
|
2017-06-14 17:33:42 +02:00
|
|
|
find_library( atasmart_LIB atasmart )
|
|
|
|
find_library( blkid_LIB blkid )
|
|
|
|
if( NOT atasmart_LIB )
|
|
|
|
message( WARNING "atasmart library not found." )
|
|
|
|
endif()
|
|
|
|
if( NOT blkid_LIB )
|
|
|
|
message( WARNING "blkid library not found." )
|
|
|
|
endif()
|
|
|
|
|
2014-06-27 17:25:39 +02:00
|
|
|
|
2016-05-05 07:57:56 +02:00
|
|
|
include_directories( ${KPMCORE_INCLUDE_DIR} )
|
2017-06-20 13:10:29 +02:00
|
|
|
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
|
|
|
|
|
|
|
add_subdirectory( tests )
|
2014-09-03 18:09:37 +02:00
|
|
|
|
2014-06-27 17:25:39 +02:00
|
|
|
calamares_add_plugin( partition
|
|
|
|
TYPE viewmodule
|
|
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
|
|
SOURCES
|
2014-08-08 13:25:56 +02:00
|
|
|
core/BootLoaderModel.cpp
|
|
|
|
core/ColorUtils.cpp
|
2017-07-11 14:54:56 +02:00
|
|
|
core/DeviceList.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
core/DeviceModel.cpp
|
2015-09-18 15:41:07 +02:00
|
|
|
core/KPMHelpers.cpp
|
2015-10-29 17:33:15 +01:00
|
|
|
core/PartitionActions.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
core/PartitionCoreModule.cpp
|
|
|
|
core/PartitionInfo.cpp
|
|
|
|
core/PartitionIterator.cpp
|
|
|
|
core/PartitionModel.cpp
|
2015-09-18 15:41:07 +02:00
|
|
|
core/PartUtils.cpp
|
2016-04-22 16:00:19 +02:00
|
|
|
gui/BootInfoWidget.cpp
|
2014-09-03 18:09:37 +02:00
|
|
|
gui/ChoicePage.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/CreatePartitionDialog.cpp
|
2015-11-27 17:24:24 +01:00
|
|
|
gui/DeviceInfoWidget.cpp
|
2016-04-22 16:00:19 +02:00
|
|
|
gui/EditExistingPartitionDialog.cpp
|
|
|
|
gui/EncryptWidget.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/PartitionPage.cpp
|
2015-12-03 17:19:02 +01:00
|
|
|
gui/PartitionBarsView.cpp
|
2015-12-03 19:38:56 +01:00
|
|
|
gui/PartitionLabelsView.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/PartitionSizeController.cpp
|
2014-10-06 18:30:23 +02:00
|
|
|
gui/PartitionSplitterWidget.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/PartitionViewStep.cpp
|
2014-09-03 18:09:37 +02:00
|
|
|
gui/PrettyRadioButton.cpp
|
2015-12-30 16:36:30 +01:00
|
|
|
gui/ScanningDialog.cpp
|
2015-11-20 14:48:47 +01:00
|
|
|
gui/ReplaceWidget.cpp
|
2014-11-28 15:50:27 +01:00
|
|
|
jobs/ClearMountsJob.cpp
|
2015-02-27 19:07:17 +01:00
|
|
|
jobs/ClearTempMountsJob.cpp
|
2014-08-08 13:25:56 +02:00
|
|
|
jobs/CreatePartitionJob.cpp
|
|
|
|
jobs/CreatePartitionTableJob.cpp
|
|
|
|
jobs/DeletePartitionJob.cpp
|
|
|
|
jobs/FillGlobalStorageJob.cpp
|
|
|
|
jobs/FormatPartitionJob.cpp
|
|
|
|
jobs/PartitionJob.cpp
|
|
|
|
jobs/ResizePartitionJob.cpp
|
2016-03-04 19:10:16 +01:00
|
|
|
jobs/SetPartitionFlagsJob.cpp
|
2014-06-27 17:25:39 +02:00
|
|
|
UI
|
2015-09-30 17:24:37 +02:00
|
|
|
gui/ChoicePage.ui
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/CreatePartitionDialog.ui
|
|
|
|
gui/CreatePartitionTableDialog.ui
|
|
|
|
gui/EditExistingPartitionDialog.ui
|
2016-04-22 16:00:19 +02:00
|
|
|
gui/EncryptWidget.ui
|
2014-08-08 13:25:56 +02:00
|
|
|
gui/PartitionPage.ui
|
2015-11-20 14:48:47 +01:00
|
|
|
gui/ReplaceWidget.ui
|
2016-12-07 16:37:29 +01:00
|
|
|
LINK_PRIVATE_LIBRARIES
|
2015-07-01 18:57:09 +02:00
|
|
|
kpmcore
|
2014-07-03 18:00:40 +02:00
|
|
|
calamaresui
|
2014-07-02 17:25:59 +02:00
|
|
|
KF5::CoreAddons
|
2014-06-27 17:25:39 +02:00
|
|
|
SHARED_LIB
|
|
|
|
)
|