mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-15 21:19:47 +00:00
13 lines
282 B
Bash
13 lines
282 B
Bash
|
|
#!/bin/sh -ex
|
||
|
|
|
||
|
|
# SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
ROOTDIR=$(CDPATH='' cd -- "$(dirname -- "$0")/" && pwd)
|
||
|
|
|
||
|
|
touch "$2"
|
||
|
|
|
||
|
|
c++ "$ROOTDIR/fuzzsettings.cpp" -o fuzzsettings
|
||
|
|
./fuzzsettings "$1" >"$2"
|
||
|
|
rm fuzzsettings
|