mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
fe2a9887a8
Disable gio tests on Windows, fix .gitignore to not ignore config.h.meson, and add more things to it. Rename the library file naming and versioning to match what Autotools outputs, e.g., libglib-2.0.so.0.5000.2 on Linux, libglib-2.0-0.dll and glib-2.0-0.dll on Windows with MSVC. Several more tiny fixes, more executables built and installed, install pkg-config and m4 files, fix building of gobject tests. Changes to gdbus-codegen to support out-of-tree builds without environment variables set (which you can't in Meson). We now add the build directory to the Python module search path.
26 lines
753 B
Python
Executable File
26 lines
753 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# This is in its own file rather than inside meson.build
|
|
# because a) mixing the two is ugly and b) trying to
|
|
# make special characters such as \n go through all
|
|
# backends is a fool's errand.
|
|
|
|
import sys, os, shutil, subprocess
|
|
|
|
perl = sys.argv[1]
|
|
glib_mkenums = sys.argv[2]
|
|
ofilename = sys.argv[3]
|
|
ofile_rel = os.path.basename(ofilename)
|
|
template_file_dir = sys.argv[4]
|
|
template_file_path = template_file_dir + '/' + ofile_rel + '.template'
|
|
headers = sys.argv[5:]
|
|
|
|
arg_array = ['--template', template_file_path]
|
|
|
|
cmd = [perl, glib_mkenums]
|
|
pc = subprocess.Popen(cmd + arg_array + headers, stdout=subprocess.PIPE)
|
|
(stdo, _) = pc.communicate()
|
|
if pc.returncode != 0:
|
|
sys.exit(pc.returncode)
|
|
open(ofilename, 'wb').write(stdo)
|