mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
- It is not enough to have and DeleteSymlinks actions because within the same installation some exes executables can be both added and removed, which needs both adding and removing some symlinks. Instead of CreateSymlinks, there is now FixSymlinks function, which goes through the list, and adds or removes the symlinks as needed. - Implemented rollback for symlink custom action. - Generate list of symlinks in C++ file, using CMake, rather than storing lists as MSI properties.
8 lines
111 B
C
8 lines
111 B
C
#pragma once
|
|
struct symlink
|
|
{
|
|
const wchar_t *file;
|
|
const wchar_t *link;
|
|
};
|
|
|
|
extern symlink all_symlinks[];
|