Warning, /system/kpmcore/src/core/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: 2008,2012 Volker Lanz <vl@fidra.de>
0002 # SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
0003 # SPDX-FileCopyrightText: 2017 Andrius Štikonas <andrius@stikonas.eu>
0004 # SPDX-FileCopyrightText: 2018 Caio Jordão Carvalho <caiojcarvalho@gmail.com>
0005
0006 # SPDX-License-Identifier: GPL-3.0-or-later
0007
0008 include(core/raid/CMakeLists.txt)
0009
0010 set(CORE_SRC
0011 core/copysource.cpp
0012 core/copysourcedevice.cpp
0013 core/copysourcefile.cpp
0014 core/copysourceshred.cpp
0015 core/copytarget.cpp
0016 core/copytargetbytearray.cpp
0017 core/copytargetdevice.cpp
0018 core/copytargetfile.cpp
0019 core/device.cpp
0020 core/devicescanner.cpp
0021 core/diskdevice.cpp
0022 core/fstab.cpp
0023 core/lvmdevice.cpp
0024 core/operationrunner.cpp
0025 core/operationstack.cpp
0026 core/partition.cpp
0027 core/partitionalignment.cpp
0028 core/partitionnode.cpp
0029 core/partitionrole.cpp
0030 core/partitiontable.cpp
0031 core/smartstatus.cpp
0032 core/smartattribute.cpp
0033 core/smartparser.cpp
0034 core/smartattributeparseddata.cpp
0035 core/smartdiskinformation.cpp
0036 core/volumemanagerdevice.cpp
0037 ${RAID_SRC}
0038 )
0039
0040 set(CORE_LIB_HDRS
0041 core/device.h
0042 core/devicescanner.h
0043 core/diskdevice.h
0044 core/fstab.h
0045 core/lvmdevice.h
0046 core/operationrunner.h
0047 core/operationstack.h
0048 core/partition.h
0049 core/partitionalignment.h
0050 core/partitionnode.h
0051 core/partitionrole.h
0052 core/partitiontable.h
0053 core/smartattribute.h
0054 core/smartstatus.h
0055 core/volumemanagerdevice.h
0056 ${RAID_LIB_HDRS}
0057 )