install_symlink()
Installs a symbolic link to pointing_to target under install_dir.
Signature
(since 0.61.0)
# Installs a symbolic link to `pointing_to` target under install_dir
void install_symlink(
str link_name, # Name of the created link under `install_dir`
# Keyword arguments:
install_dir : str [required] # The absolute or relative path to the installation directory for the links
install_tag : str # A string used by the `meson install --tags` command
pointing_to : str [required] # Target to point the link to
)
Arguments
The function install_symlink() accepts the following positional arguments:
| Name | Type | Description | Tags |
|---|---|---|---|
link_name |
str |
Name of the created link under |
|
Finally, install_symlink()
accepts the following keyword arguments:
| Name | Type | Description | Tags |
|---|---|---|---|
install_dir |
str |
The absolute or relative path to the installation directory for the links. If this is a relative path, it is assumed to be relative to the prefix. |
|
install_tag |
str |
A string used by the |
|
pointing_to |
str |
Target to point the link to. Can be absolute or relative and that will be respected when creating the link. |
|
The results of the search are