Warning, /system/kpmcore/src/fs/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-2019 Andrius Štikonas <andrius@stikonas.eu>
0003 # SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
0004 # SPDX-FileCopyrightText: 2015 Teo Mrnjavac <teo@kde.org>
0005 # SPDX-FileCopyrightText: 2017 Pali Rohár <pali.rohar@gmail.com>
0006 # SPDX-FileCopyrightText: 2018 Caio Jordão Carvalho <caiojcarvalho@gmail.com>
0007 # SPDX-FileCopyrightText: 2019 Shubham Jangra <aryan100jangid@gmail.com>
0008 # SPDX-FileCopyrightText: 2020 Arnaud Ferraris <arnaud.ferraris@collabora.com>
0009 # SPDX-FileCopyrightText: 2020 Gaël PORTAY <gael.portay@collabora.com>
0010 
0011 # SPDX-License-Identifier: GPL-3.0-or-later
0012 
0013 set(FS_SRC
0014     fs/apfs.cpp
0015     fs/bitlocker.cpp
0016     fs/btrfs.cpp
0017     fs/exfat.cpp
0018     fs/ext2.cpp
0019     fs/ext3.cpp
0020     fs/ext4.cpp
0021     fs/extended.cpp
0022     fs/f2fs.cpp
0023     fs/fat12.cpp
0024     fs/fat16.cpp
0025     fs/fat32.cpp
0026     fs/filesystem.cpp
0027     fs/filesystemfactory.cpp
0028     fs/hfs.cpp
0029     fs/hfsplus.cpp
0030     fs/hpfs.cpp
0031     fs/iso9660.cpp
0032     fs/jfs.cpp
0033     fs/linuxraidmember.cpp
0034     fs/linuxswap.cpp
0035     fs/luks.cpp
0036     fs/luks2.cpp
0037     fs/lvm2_pv.cpp
0038     fs/minix.cpp
0039     fs/nilfs2.cpp
0040     fs/ntfs.cpp
0041     fs/ocfs2.cpp
0042     fs/reiser4.cpp
0043     fs/reiserfs.cpp
0044     fs/udf.cpp
0045     fs/ufs.cpp
0046     fs/unformatted.cpp
0047     fs/unknown.cpp
0048     fs/xfs.cpp
0049     fs/zfs.cpp
0050 )
0051 
0052 set(FS_LIB_HDRS
0053     fs/apfs.h
0054     fs/bitlocker.h
0055     fs/btrfs.h
0056     fs/exfat.h
0057     fs/ext2.h
0058     fs/ext3.h
0059     fs/ext4.h
0060     fs/extended.h
0061     fs/f2fs.h
0062     fs/fat12.h
0063     fs/fat16.h
0064     fs/fat32.h
0065     fs/filesystem.h
0066     fs/filesystemfactory.h
0067     fs/hfs.h
0068     fs/hfsplus.h
0069     fs/hpfs.h
0070     fs/iso9660.h
0071     fs/jfs.h
0072     fs/linuxraidmember.h
0073     fs/linuxswap.h
0074     fs/luks.h
0075     fs/luks2.h
0076     fs/lvm2_pv.h
0077     fs/minix.h
0078     fs/nilfs2.h
0079     fs/ntfs.h
0080     fs/ocfs2.h
0081     fs/reiser4.h
0082     fs/reiserfs.h
0083     fs/udf.h
0084     fs/ufs.h
0085     fs/unformatted.h
0086     fs/unknown.h
0087     fs/xfs.h
0088     fs/zfs.h
0089 )