mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 22:42:31 +08:00
a3ece6c01d
Some checks failed
Build / Build with CMake (push) Has been cancelled
Build / Build with CMake (DEVENV OFF) (push) Has been cancelled
Build / Build with Meson (push) Has been cancelled
Build / Build with Meson (DEVENV OFF) (push) Has been cancelled
Checks / cpp-linter (push) Has been cancelled
Checks / Check C++ style (push) Has been cancelled
37 lines
936 B
Meson
37 lines
936 B
Meson
gucc_lib = library('gucc',
|
|
sources : [
|
|
'src/io_utils.cpp',
|
|
'src/file_utils.cpp',
|
|
'src/string_utils.cpp',
|
|
'src/fs_utils.cpp',
|
|
'src/cpu.cpp',
|
|
'src/pacmanconf_repo.cpp',
|
|
'src/initcpio.cpp',
|
|
'src/block_devices.cpp',
|
|
'src/luks.cpp',
|
|
'src/zfs.cpp',
|
|
'src/btrfs.cpp',
|
|
'src/user.cpp',
|
|
'src/locale.cpp',
|
|
'src/fstab.cpp',
|
|
'src/crypttab.cpp',
|
|
'src/bootloader.cpp',
|
|
'src/systemd_services.cpp',
|
|
'src/autologin.cpp',
|
|
'src/mtab.cpp',
|
|
'src/umount_partitions.cpp',
|
|
'src/mount_partitions.cpp',
|
|
'src/hwclock.cpp',
|
|
'src/package_profiles.cpp',
|
|
'src/logger.cpp',
|
|
'src/fetch_file.cpp',
|
|
'src/kernel_params.cpp',
|
|
],
|
|
include_directories : [include_directories('include')],
|
|
dependencies: deps
|
|
)
|
|
|
|
if is_tests_build
|
|
subdir('tests')
|
|
endif
|