Sort files in CMakeLists.txt alphabetically.

This commit is contained in:
Andrius Štikonas 2017-09-13 18:52:43 +01:00
parent 34712dd2ed
commit 8f7e0beb0f
1 changed files with 19 additions and 17 deletions

View File

@ -1,26 +1,27 @@
set(CORE_SRC set(CORE_SRC
core/copysourceshred.cpp
core/copysource.cpp core/copysource.cpp
core/partition.cpp
core/mountentry.cpp
core/copytargetdevice.cpp
core/copytarget.cpp
core/copysourcedevice.cpp core/copysourcedevice.cpp
core/operationrunner.cpp
core/partitiontable.cpp
core/copytargetfile.cpp
core/smartstatus.cpp
core/copysourcefile.cpp core/copysourcefile.cpp
core/smartattribute.cpp core/copysourceshred.cpp
core/devicescanner.cpp core/copytarget.cpp
core/partitionnode.cpp core/copytargetdevice.cpp
core/partitionalignment.cpp core/copytargetfile.cpp
core/device.cpp core/device.cpp
core/devicescanner.cpp
core/diskdevice.cpp core/diskdevice.cpp
core/volumemanagerdevice.cpp core/fstab.cpp
core/lvmdevice.cpp core/lvmdevice.cpp
core/mountentry.cpp
core/operationrunner.cpp
core/operationstack.cpp core/operationstack.cpp
core/partition.cpp
core/partitionalignment.cpp
core/partitionnode.cpp
core/partitionrole.cpp core/partitionrole.cpp
core/partitiontable.cpp
core/smartstatus.cpp
core/smartattribute.cpp
core/volumemanagerdevice.cpp
) )
set(CORE_LIB_HDRS set(CORE_LIB_HDRS
@ -29,10 +30,10 @@ set(CORE_LIB_HDRS
core/copytarget.h core/copytarget.h
core/copytargetdevice.h core/copytargetdevice.h
core/device.h core/device.h
core/diskdevice.h
core/volumemanagerdevice.h
core/lvmdevice.h
core/devicescanner.h core/devicescanner.h
core/diskdevice.h
core/fstab.h
core/lvmdevice.h
core/mountentry.h core/mountentry.h
core/operationrunner.h core/operationrunner.h
core/operationstack.h core/operationstack.h
@ -43,5 +44,6 @@ set(CORE_LIB_HDRS
core/partitiontable.h core/partitiontable.h
core/smartattribute.h core/smartattribute.h
core/smartstatus.h core/smartstatus.h
core/volumemanagerdevice.h
) )