/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/interfaces/libpq/test/meson.build
42 строки
1005 B
Bruce Momjian
Update copyright for 2026
01 янв 2026, 21:24
01 янв 2026, 21:24
451c439
Код
Авторство
О чём код?
# Copyright (c) 2022-2026, PostgreSQL Global Development Group libpq_test_deps = [] libpq_uri_regress_sources = files( 'libpq_uri_regress.c', ) if host_system == 'windows' libpq_uri_regress_sources += rc_bin_gen.process(win32ver_rc, extra_args: [ '--NAME', 'libpq_uri_regress', '--FILEDESC', 'libpq test program',]) endif libpq_test_deps += executable('libpq_uri_regress', libpq_uri_regress_sources, dependencies: [frontend_no_fe_utils_code, libpq], kwargs: default_bin_args + { 'install': false, } ) libpq_testclient_sources = files( 'libpq_testclient.c', ) if host_system == 'windows' libpq_testclient_sources += rc_bin_gen.process(win32ver_rc, extra_args: [ '--NAME', 'libpq_testclient', '--FILEDESC', 'libpq test program',]) endif libpq_test_deps += executable('libpq_testclient', libpq_testclient_sources, dependencies: [frontend_no_fe_utils_code, libpq], kwargs: default_bin_args + { 'install': false, } ) testprep_targets += libpq_test_deps