2024-06-26 05:49:53 +08:00
|
|
|
executable(
|
|
|
|
'test-initcpio',
|
|
|
|
files('unit-initcpio.cpp'),
|
|
|
|
dependencies: deps,
|
2024-06-26 06:48:27 +08:00
|
|
|
link_with: [gucc_lib],
|
2024-06-26 20:16:34 +08:00
|
|
|
include_directories: [include_directories('../include')],
|
2024-06-26 05:49:53 +08:00
|
|
|
install: false)
|
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-pacmanconf',
|
|
|
|
files('unit-pacmanconf.cpp'),
|
|
|
|
dependencies: deps,
|
2024-06-26 06:48:27 +08:00
|
|
|
link_with: [gucc_lib],
|
2024-06-26 20:16:34 +08:00
|
|
|
include_directories: [include_directories('../include')],
|
2024-06-26 05:49:53 +08:00
|
|
|
install: false)
|
2024-06-30 07:49:47 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-fstab_gen',
|
|
|
|
files('unit-fstab_gen.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|
2024-07-01 19:50:37 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-crypttab_gen',
|
|
|
|
files('unit-crypttab_gen.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|
2024-07-02 06:03:33 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-grub_config_gen',
|
|
|
|
files('unit-grub_config_gen.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|
2024-07-05 06:40:34 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-mtab',
|
|
|
|
files('unit-mtab.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|
2024-07-06 05:29:50 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-locale',
|
|
|
|
files('unit-locale.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|
2024-07-09 05:35:01 +08:00
|
|
|
|
|
|
|
executable(
|
|
|
|
'test-package_profiles',
|
|
|
|
files('unit-package_profiles.cpp'),
|
|
|
|
dependencies: deps,
|
|
|
|
link_with: [gucc_lib],
|
|
|
|
include_directories: [include_directories('../include')],
|
|
|
|
install: false)
|