Dispatch files in core/ gui/ and jobs/ dirs
This commit is contained in:
parent
8e2b4050e7
commit
693e9229c8
@ -21,34 +21,34 @@ calamares_add_plugin( partition
|
|||||||
TYPE viewmodule
|
TYPE viewmodule
|
||||||
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
||||||
SOURCES
|
SOURCES
|
||||||
BootLoaderModel.cpp
|
core/BootLoaderModel.cpp
|
||||||
CheckFileSystemJob.cpp
|
core/ColorUtils.cpp
|
||||||
ColorUtils.cpp
|
core/DeviceModel.cpp
|
||||||
CreatePartitionDialog.cpp
|
core/PartitionCoreModule.cpp
|
||||||
CreatePartitionJob.cpp
|
core/PartitionInfo.cpp
|
||||||
CreatePartitionTableJob.cpp
|
core/PartitionIterator.cpp
|
||||||
DeletePartitionJob.cpp
|
core/PartitionModel.cpp
|
||||||
DeviceModel.cpp
|
core/PMUtils.cpp
|
||||||
EditExistingPartitionDialog.cpp
|
gui/CreatePartitionDialog.cpp
|
||||||
FillGlobalStorageJob.cpp
|
gui/EditExistingPartitionDialog.cpp
|
||||||
FormatPartitionJob.cpp
|
gui/PartitionPage.cpp
|
||||||
MoveFileSystemJob.cpp
|
gui/PartitionPreview.cpp
|
||||||
PartitionCoreModule.cpp
|
gui/PartitionSizeController.cpp
|
||||||
PartitionInfo.cpp
|
gui/PartitionViewStep.cpp
|
||||||
PartitionIterator.cpp
|
jobs/CheckFileSystemJob.cpp
|
||||||
PartitionJob.cpp
|
jobs/CreatePartitionJob.cpp
|
||||||
PartitionModel.cpp
|
jobs/CreatePartitionTableJob.cpp
|
||||||
PartitionPage.cpp
|
jobs/DeletePartitionJob.cpp
|
||||||
PartitionPreview.cpp
|
jobs/FillGlobalStorageJob.cpp
|
||||||
PartitionSizeController.cpp
|
jobs/FormatPartitionJob.cpp
|
||||||
PartitionViewStep.cpp
|
jobs/MoveFileSystemJob.cpp
|
||||||
PMUtils.cpp
|
jobs/PartitionJob.cpp
|
||||||
ResizePartitionJob.cpp
|
jobs/ResizePartitionJob.cpp
|
||||||
UI
|
UI
|
||||||
CreatePartitionDialog.ui
|
gui/CreatePartitionDialog.ui
|
||||||
CreatePartitionTableDialog.ui
|
gui/CreatePartitionTableDialog.ui
|
||||||
EditExistingPartitionDialog.ui
|
gui/EditExistingPartitionDialog.ui
|
||||||
PartitionPage.ui
|
gui/PartitionPage.ui
|
||||||
LINK_LIBRARIES
|
LINK_LIBRARIES
|
||||||
calapm
|
calapm
|
||||||
calamaresui
|
calamaresui
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include <BootLoaderModel.h>
|
#include <core/BootLoaderModel.h>
|
||||||
|
|
||||||
#include <PartitionInfo.h>
|
#include <core/PartitionInfo.h>
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/device.h>
|
#include <core/device.h>
|
@ -16,9 +16,9 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ColorUtils.h>
|
#include <core/ColorUtils.h>
|
||||||
|
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/partition.h>
|
#include <core/partition.h>
|
@ -15,8 +15,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include <DeviceModel.h>
|
#include <core/DeviceModel.h>
|
||||||
#include <PartitionModel.h>
|
|
||||||
|
#include <core/PartitionModel.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/device.h>
|
#include <core/device.h>
|
@ -16,10 +16,10 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
|
|
||||||
#include <PartitionInfo.h>
|
#include <core/PartitionInfo.h>
|
||||||
#include <PartitionIterator.h>
|
#include <core/PartitionIterator.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/partition.h>
|
#include <core/partition.h>
|
@ -16,20 +16,21 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PartitionCoreModule.h>
|
#include <core/PartitionCoreModule.h>
|
||||||
|
|
||||||
|
#include <core/BootLoaderModel.h>
|
||||||
|
#include <core/DeviceModel.h>
|
||||||
|
#include <core/PartitionInfo.h>
|
||||||
|
#include <core/PartitionIterator.h>
|
||||||
|
#include <core/PartitionModel.h>
|
||||||
|
#include <core/PMUtils.h>
|
||||||
|
#include <jobs/CreatePartitionJob.h>
|
||||||
|
#include <jobs/CreatePartitionTableJob.h>
|
||||||
|
#include <jobs/DeletePartitionJob.h>
|
||||||
|
#include <jobs/FillGlobalStorageJob.h>
|
||||||
|
#include <jobs/FormatPartitionJob.h>
|
||||||
|
#include <jobs/ResizePartitionJob.h>
|
||||||
|
|
||||||
#include <BootLoaderModel.h>
|
|
||||||
#include <CreatePartitionJob.h>
|
|
||||||
#include <CreatePartitionTableJob.h>
|
|
||||||
#include <DeletePartitionJob.h>
|
|
||||||
#include <FillGlobalStorageJob.h>
|
|
||||||
#include <FormatPartitionJob.h>
|
|
||||||
#include <DeviceModel.h>
|
|
||||||
#include <PartitionInfo.h>
|
|
||||||
#include <PartitionIterator.h>
|
|
||||||
#include <PartitionModel.h>
|
|
||||||
#include <PMUtils.h>
|
|
||||||
#include <ResizePartitionJob.h>
|
|
||||||
#include <Typedefs.h>
|
#include <Typedefs.h>
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef PARTITIONCOREMODULE_H
|
#ifndef PARTITIONCOREMODULE_H
|
||||||
#define PARTITIONCOREMODULE_H
|
#define PARTITIONCOREMODULE_H
|
||||||
|
|
||||||
#include <PartitionModel.h>
|
#include <core/PartitionModel.h>
|
||||||
#include <Typedefs.h>
|
#include <Typedefs.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
@ -15,7 +15,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include <PartitionInfo.h>
|
#include <core/PartitionInfo.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/partition.h>
|
#include <core/partition.h>
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PartitionIterator.h>
|
#include <core/PartitionIterator.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/device.h>
|
#include <core/device.h>
|
@ -15,11 +15,11 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include <PartitionModel.h>
|
#include <core/PartitionModel.h>
|
||||||
|
|
||||||
#include <ColorUtils.h>
|
#include <core/ColorUtils.h>
|
||||||
#include <PartitionInfo.h>
|
#include <core/PartitionInfo.h>
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
@ -16,13 +16,15 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <CreatePartitionDialog.h>
|
#include <gui/CreatePartitionDialog.h>
|
||||||
|
|
||||||
|
#include <core/ColorUtils.h>
|
||||||
|
#include <core/PartitionInfo.h>
|
||||||
|
#include <core/PMUtils.h>
|
||||||
|
#include <gui/PartitionSizeController.h>
|
||||||
|
|
||||||
#include <ColorUtils.h>
|
|
||||||
#include <PartitionInfo.h>
|
|
||||||
#include <PartitionSizeController.h>
|
|
||||||
#include <PMUtils.h>
|
|
||||||
#include <ui_CreatePartitionDialog.h>
|
#include <ui_CreatePartitionDialog.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
@ -16,14 +16,16 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <EditExistingPartitionDialog.h>
|
#include <gui/EditExistingPartitionDialog.h>
|
||||||
|
|
||||||
|
#include <core/ColorUtils.h>
|
||||||
|
#include <core/PartitionCoreModule.h>
|
||||||
|
#include <core/PartitionInfo.h>
|
||||||
|
#include <core/PMUtils.h>
|
||||||
|
#include <gui/PartitionSizeController.h>
|
||||||
|
|
||||||
#include <ColorUtils.h>
|
|
||||||
#include <PartitionCoreModule.h>
|
|
||||||
#include <PartitionInfo.h>
|
|
||||||
#include <PartitionSizeController.h>
|
|
||||||
#include <PMUtils.h>
|
|
||||||
#include <ui_EditExistingPartitionDialog.h>
|
#include <ui_EditExistingPartitionDialog.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
@ -19,13 +19,14 @@
|
|||||||
#include "PartitionPage.h"
|
#include "PartitionPage.h"
|
||||||
|
|
||||||
// Local
|
// Local
|
||||||
#include <BootLoaderModel.h>
|
#include <core/BootLoaderModel.h>
|
||||||
#include <CreatePartitionDialog.h>
|
#include <core/DeviceModel.h>
|
||||||
#include <EditExistingPartitionDialog.h>
|
#include <core/PartitionCoreModule.h>
|
||||||
#include <DeviceModel.h>
|
#include <core/PartitionModel.h>
|
||||||
#include <PartitionCoreModule.h>
|
#include <core/PMUtils.h>
|
||||||
#include <PartitionModel.h>
|
#include <gui/CreatePartitionDialog.h>
|
||||||
#include <PMUtils.h>
|
#include <gui/EditExistingPartitionDialog.h>
|
||||||
|
|
||||||
#include <ui_PartitionPage.h>
|
#include <ui_PartitionPage.h>
|
||||||
#include <ui_CreatePartitionTableDialog.h>
|
#include <ui_CreatePartitionTableDialog.h>
|
||||||
|
|
@ -177,7 +177,7 @@
|
|||||||
<customwidget>
|
<customwidget>
|
||||||
<class>PartitionPreview</class>
|
<class>PartitionPreview</class>
|
||||||
<extends>QFrame</extends>
|
<extends>QFrame</extends>
|
||||||
<header location="global">PartitionPreview.h</header>
|
<header location="global">gui/PartitionPreview.h</header>
|
||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
@ -15,9 +15,9 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include <PartitionPreview.h>
|
#include <gui/PartitionPreview.h>
|
||||||
|
|
||||||
#include <PartitionModel.h>
|
#include <core/PartitionModel.h>
|
||||||
|
|
||||||
// Qt
|
// Qt
|
||||||
#include <QDebug>
|
#include <QDebug>
|
@ -16,9 +16,9 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PartitionSizeController.h>
|
#include <gui/PartitionSizeController.h>
|
||||||
|
|
||||||
#include <ColorUtils.h>
|
#include <core/ColorUtils.h>
|
||||||
|
|
||||||
// Qt
|
// Qt
|
||||||
#include <QSpinBox>
|
#include <QSpinBox>
|
@ -16,13 +16,13 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PartitionViewStep.h>
|
#include <gui/PartitionViewStep.h>
|
||||||
|
|
||||||
#include <DeviceModel.h>
|
#include <core/DeviceModel.h>
|
||||||
#include <PartitionCoreModule.h>
|
#include <core/PartitionCoreModule.h>
|
||||||
#include <PartitionModel.h>
|
#include <core/PartitionModel.h>
|
||||||
#include <PartitionPage.h>
|
#include <gui/PartitionPage.h>
|
||||||
#include <PartitionPreview.h>
|
#include <gui/PartitionPreview.h>
|
||||||
|
|
||||||
// Qt
|
// Qt
|
||||||
#include <QFormLayout>
|
#include <QFormLayout>
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <CheckFileSystemJob.h>
|
#include <jobs/CheckFileSystemJob.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/partition.h>
|
#include <core/partition.h>
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef CHECKFILESYSTEMJOB_H
|
#ifndef CHECKFILESYSTEMJOB_H
|
||||||
#define CHECKFILESYSTEMJOB_H
|
#define CHECKFILESYSTEMJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runs a file system check on an existing partition.
|
* Runs a file system check on an existing partition.
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <CreatePartitionJob.h>
|
#include <jobs/CreatePartitionJob.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef CREATEPARTITIONJOB_H
|
#ifndef CREATEPARTITIONJOB_H
|
||||||
#define CREATEPARTITIONJOB_H
|
#define CREATEPARTITIONJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
class Device;
|
class Device;
|
||||||
class Partition;
|
class Partition;
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <CreatePartitionTableJob.h>
|
#include <jobs/CreatePartitionTableJob.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <DeletePartitionJob.h>
|
#include <jobs/DeletePartitionJob.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <backend/corebackend.h>
|
#include <backend/corebackend.h>
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef DELETEPARTITIONJOB_H
|
#ifndef DELETEPARTITIONJOB_H
|
||||||
#define DELETEPARTITIONJOB_H
|
#define DELETEPARTITIONJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
class Device;
|
class Device;
|
||||||
class Partition;
|
class Partition;
|
@ -16,13 +16,13 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <FillGlobalStorageJob.h>
|
#include <jobs/FillGlobalStorageJob.h>
|
||||||
|
|
||||||
#include <GlobalStorage.h>
|
#include <GlobalStorage.h>
|
||||||
#include <JobQueue.h>
|
#include <JobQueue.h>
|
||||||
#include <PartitionInfo.h>
|
#include <core/PartitionInfo.h>
|
||||||
#include <PartitionIterator.h>
|
#include <core/PartitionIterator.h>
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <core/device.h>
|
#include <core/device.h>
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <FormatPartitionJob.h>
|
#include <jobs/FormatPartitionJob.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef FORMATPARTITIONJOB_H
|
#ifndef FORMATPARTITIONJOB_H
|
||||||
#define FORMATPARTITIONJOB_H
|
#define FORMATPARTITIONJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
class Device;
|
class Device;
|
||||||
class Partition;
|
class Partition;
|
@ -40,7 +40,7 @@
|
|||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <MoveFileSystemJob.h>
|
#include <jobs/MoveFileSystemJob.h>
|
||||||
|
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
@ -40,7 +40,7 @@
|
|||||||
#ifndef MOVEFILESYSTEMJOB_H
|
#ifndef MOVEFILESYSTEMJOB_H
|
||||||
#define MOVEFILESYSTEMJOB_H
|
#define MOVEFILESYSTEMJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
class CopySourceDevice;
|
class CopySourceDevice;
|
||||||
class CopyTargetDevice;
|
class CopyTargetDevice;
|
@ -16,7 +16,7 @@
|
|||||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
PartitionJob::PartitionJob( Partition* partition )
|
PartitionJob::PartitionJob( Partition* partition )
|
||||||
: m_partition( partition )
|
: m_partition( partition )
|
@ -38,10 +38,10 @@
|
|||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <ResizePartitionJob.h>
|
#include <jobs/ResizePartitionJob.h>
|
||||||
|
|
||||||
#include <CheckFileSystemJob.h>
|
#include <jobs/CheckFileSystemJob.h>
|
||||||
#include <MoveFileSystemJob.h>
|
#include <jobs/MoveFileSystemJob.h>
|
||||||
#include <utils/Logger.h>
|
#include <utils/Logger.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
@ -19,7 +19,7 @@
|
|||||||
#ifndef RESIZEPARTITIONJOB_H
|
#ifndef RESIZEPARTITIONJOB_H
|
||||||
#define RESIZEPARTITIONJOB_H
|
#define RESIZEPARTITIONJOB_H
|
||||||
|
|
||||||
#include <PartitionJob.h>
|
#include <jobs/PartitionJob.h>
|
||||||
|
|
||||||
class Device;
|
class Device;
|
||||||
class Partition;
|
class Partition;
|
@ -2,16 +2,16 @@ find_package( Qt5 COMPONENTS Test REQUIRED )
|
|||||||
include( ECMAddTests )
|
include( ECMAddTests )
|
||||||
|
|
||||||
set( jobtests_SRCS
|
set( jobtests_SRCS
|
||||||
${PartitionModule_SOURCE_DIR}/CheckFileSystemJob.cpp
|
${PartitionModule_SOURCE_DIR}/core/PMUtils.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/CreatePartitionJob.cpp
|
${PartitionModule_SOURCE_DIR}/core/PartitionInfo.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/CreatePartitionTableJob.cpp
|
${PartitionModule_SOURCE_DIR}/core/PartitionIterator.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/DeletePartitionJob.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/CheckFileSystemJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/MoveFileSystemJob.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/CreatePartitionJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/PartitionInfo.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/CreatePartitionTableJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/PartitionIterator.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/DeletePartitionJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/PartitionJob.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/MoveFileSystemJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/PMUtils.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/PartitionJob.cpp
|
||||||
${PartitionModule_SOURCE_DIR}/ResizePartitionJob.cpp
|
${PartitionModule_SOURCE_DIR}/jobs/ResizePartitionJob.cpp
|
||||||
JobTests.cpp
|
JobTests.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include <JobTests.h>
|
#include <JobTests.h>
|
||||||
|
|
||||||
#include <CreatePartitionJob.h>
|
#include <jobs/CreatePartitionJob.h>
|
||||||
#include <CreatePartitionTableJob.h>
|
#include <jobs/CreatePartitionTableJob.h>
|
||||||
#include <ResizePartitionJob.h>
|
#include <jobs/ResizePartitionJob.h>
|
||||||
#include <PMUtils.h>
|
#include <core/PMUtils.h>
|
||||||
|
|
||||||
// CalaPM
|
// CalaPM
|
||||||
#include <CalaPM.h>
|
#include <CalaPM.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user