FluidSynth / fluidsynth

Software synthesizer based on the SoundFont 2 specifications
https://www.fluidsynth.org
GNU Lesser General Public License v2.1
1.76k stars 246 forks source link

Hidden symbols #1334

Closed bramtayl closed 2 weeks ago

bramtayl commented 3 weeks ago

FluidSynth version

2.3.5 ( from vcpkg)

Describe the bug

I can't compile against the fluidsynth library I got from vcpkg. A lot of the functions I need seem to be hidden. I get the following error:

/usr/bin/clang++-15 -O3 -DNDEBUG  CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o CMakeFiles/Justly.dir/src/main.cpp.o -o Justly -L/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/pkgconfig/../../lib -Wl,-rpath,"\$ORIGIN/vcpkg_installed/x64-linux/lib:\$ORIGIN:"  libJustlyLibrary.so  /usr/lib/x86_64-linux-gnu/libQt6Widgets.so.6.4.2  vcpkg_installed/x64-linux/lib/libfluidsynth.a  /usr/lib/x86_64-linux-gnu/libQt6Gui.so.6.4.2  /usr/lib/x86_64-linux-gnu/libQt6Core.so.6.4.2  /usr/lib/x86_64-linux-gnu/libGLX.so  /usr/lib/x86_64-linux-gnu/libOpenGL.so  vcpkg_installed/x64-linux/lib/libglib-2.0.a  vcpkg_installed/x64-linux/lib/libgthread-2.0.a  vcpkg_installed/x64-linux/lib/libsndfile.a  vcpkg_installed/x64-linux/lib/libvorbisenc.a  vcpkg_installed/x64-linux/lib/libvorbis.a  vcpkg_installed/x64-linux/lib/libFLAC.a  vcpkg_installed/x64-linux/lib/libogg.a  vcpkg_installed/x64-linux/lib/libopus.a  vcpkg_installed/x64-linux/lib/libmpg123.a  vcpkg_installed/x64-linux/lib/libmp3lame.a  /usr/lib/x86_64-linux-gnu/libpulse-simple.so  /usr/lib/x86_64-linux-gnu/libpulse.so  vcpkg_installed/x64-linux/lib/libasound.a  -ldl  -lrt  vcpkg_installed/x64-linux/lib/libgmodule-2.0.a  -lglib-2.0  -lm  -lpcre2-8  -lffi && :
[build] /usr/bin/ld: Justly: hidden symbol `fluid_sequencer_register_fluidsynth' in vcpkg_installed/x64-linux/lib/libfluidsynth.a(fluid_seqbind.c.o) is referenced by DSO

Steps to reproduce

You could clone https://github.com/bramtayl/Justly and try to build it. There are some github action build scripts.

bramtayl commented 2 weeks ago

vcpkg fluidsynth port:

https://github.com/microsoft/vcpkg/tree/master/ports/fluidsynth

Installing fluidsynth with vcpkg:

git clone https://github.com/microsoft/vcpkg
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg install fluidsynth

vcpkg fluidsynth cmake cache:

# This is the CMakeCache file.
# For build in directory: /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg
# It was generated by CMake: /home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//The directory containing a CMake configuration file for ALSA.
ALSA_DIR:PATH=ALSA_DIR-NOTFOUND

//Path to a file.
ALSA_INCLUDE_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/include

//Path to a library.
ALSA_LIBRARY_DEBUG:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a

//Path to a library.
ALSA_LIBRARY_RELEASE:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libasound.a

//Path to a program.
ASTYLE:FILEPATH=ASTYLE-NOTFOUND

//Build a shared object or DLL
BUILD_SHARED_LIBS:BOOL=OFF

//The install dir for application bundles
BUNDLE_INSTALL_DIR:STRING=Applications

//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line

//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar

//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=Debug

CMAKE_CROSSCOMPILING:BOOL=OFF

//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++

//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13

//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13

//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=-fPIC

//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g

//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG

//C compiler
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc

//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13

//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13

//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=-fPIC

//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g

//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG

//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND

//No help, variable specified on the command line.
CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION:UNINITIALIZED=ON

//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=

//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=

//No help, variable specified on the command line.
CMAKE_EXPORT_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON

//No help, variable specified on the command line.
CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON

//No help, variable specified on the command line.
CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY:UNINITIALIZED=ON

//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/CMakeFiles/pkgRedirects

//No help, variable specified on the command line.
CMAKE_INSTALL_BINDIR:STRING=bin

//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=

//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share

//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=

//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include

//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=

//No help, variable specified on the command line.
CMAKE_INSTALL_LIBDIR:STRING=lib

//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec

//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=

//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var

//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=

//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug

//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=

//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin

//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com

//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=etc

//No help, variable specified on the command line.
CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP:UNINITIALIZED=TRUE

//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld

//No help, variable specified on the command line.
CMAKE_MAKE_PROGRAM:UNINITIALIZED=/usr/bin/ninja

//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=

//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm

//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy

//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump

//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=

//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=

//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=FluidSynth

//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib

//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/readelf

//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=

//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO

//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO

//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=

//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip

CMAKE_SYSTEM_NAME:STRING=Linux

CMAKE_SYSTEM_PROCESSOR:STRING=x86_64

//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND

//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake

//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make.  This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=ON

//No help, variable specified on the command line.
COREAUDIO_FOUND:BOOL=OFF

//No help, variable specified on the command line.
COREMIDI_FOUND:BOOL=OFF

//The dbus interfaces install dir
DBUS_INTERFACES_INSTALL_DIR:STRING=share/dbus-1/interfaces

//The dbus services install dir
DBUS_SERVICES_INSTALL_DIR:STRING=share/dbus-1/services

//The dbus system services install dir
DBUS_SYSTEM_SERVICES_INSTALL_DIR:STRING=share/dbus-1/system-services

//Default soundfont file
DEFAULT_SOUNDFONT:STRING=/home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/share/soundfonts/default.sf2

//Dot tool for use with Doxygen
DOXYGEN_DOT_EXECUTABLE:FILEPATH=/usr/bin/dot

//Doxygen documentation generation tool (https://www.doxygen.nl)
DOXYGEN_EXECUTABLE:FILEPATH=/usr/bin/doxygen

//The directory containing a CMake configuration file for Doxygen.
Doxygen_DIR:PATH=Doxygen_DIR-NOTFOUND

//No help, variable specified on the command line.
FETCHCONTENT_FULLY_DISCONNECTED:UNINITIALIZED=ON

//The directory containing a CMake configuration file for FLAC.
FLAC_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/FLAC

//The install dir for framework bundles
FRAMEWORK_INSTALL_DIR:STRING=Library/Frameworks

//Value Computed by CMake
FluidSynth_BINARY_DIR:STATIC=/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg

//Value Computed by CMake
FluidSynth_IS_TOP_LEVEL:STATIC=ON

//Value Computed by CMake
FluidSynth_SOURCE_DIR:STATIC=/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean

//The directory containing a CMake configuration file for GLib2.
GLib2_DIR:PATH=GLib2_DIR-NOTFOUND

//Path to a file.
GLib2_INCLUDE_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0

//Path to a library.
GLib2_glib-2_LIBRARY:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a

//Path to a library.
GLib2_gmodule-2_LIBRARY:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgmodule-2.0.a

//Path to a library.
GLib2_gobject-2_LIBRARY:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgobject-2.0.a

//Path to a library.
GLib2_gthread-2_LIBRARY:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a

//Path to a library.
HAS_LIBM:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so

//No help, variable specified on the command line.
HAVE_DSOUND_H:BOOL=OFF

//No help, variable specified on the command line.
HAVE_MMSYSTEM_H:BOOL=OFF

//No help, variable specified on the command line.
HAVE_OBJBASE_H:BOOL=OFF

//Path to a file.
LIBXSLT_EXSLT_INCLUDE_DIR:PATH=LIBXSLT_EXSLT_INCLUDE_DIR-NOTFOUND

//Path to a library.
LIBXSLT_EXSLT_LIBRARY:FILEPATH=LIBXSLT_EXSLT_LIBRARY-NOTFOUND

//Path to a file.
LIBXSLT_INCLUDE_DIR:PATH=LIBXSLT_INCLUDE_DIR-NOTFOUND

//Path to a library.
LIBXSLT_LIBRARY:FILEPATH=LIBXSLT_LIBRARY-NOTFOUND

//Path to a program.
LIBXSLT_XSLTPROC_EXECUTABLE:FILEPATH=LIBXSLT_XSLTPROC_EXECUTABLE-NOTFOUND

//The directory containing a CMake configuration file for LibXslt.
LibXslt_DIR:PATH=LibXslt_DIR-NOTFOUND

//The directory containing a CMake configuration file for Ogg.
Ogg_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/ogg

//CXX compiler flags for OpenMP parallelization
OpenMP_CXX_FLAGS:STRING=-fopenmp

//CXX compiler libraries for OpenMP parallelization
OpenMP_CXX_LIB_NAMES:STRING=gomp;pthread

//C compiler flags for OpenMP parallelization
OpenMP_C_FLAGS:STRING=-fopenmp

//C compiler libraries for OpenMP parallelization
OpenMP_C_LIB_NAMES:STRING=gomp;pthread

//The directory containing a CMake configuration file for OpenMP.
OpenMP_DIR:PATH=OpenMP_DIR-NOTFOUND

//Path to the gomp library for OpenMP
OpenMP_gomp_LIBRARY:FILEPATH=/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so

//Path to the pthread library for OpenMP
OpenMP_pthread_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpthread.a

//No help, variable specified on the command line.
OpenSLES_FOUND:BOOL=OFF

//The directory containing a CMake configuration file for Opus.
Opus_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/opus

//Arguments to supply to pkg-config
PKG_CONFIG_ARGN:STRING=

//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=/bin/pkg-config

//The directory containing a CMake configuration file for PkgConfig.
PkgConfig_DIR:PATH=PkgConfig_DIR-NOTFOUND

//The directory containing a CMake configuration file for SndFile.
SndFile_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/SndFile

//The directory containing a CMake configuration file for Threads.
Threads_DIR:PATH=Threads_DIR-NOTFOUND

//Automatically copy dependencies into the output directory for
// executables.
VCPKG_APPLOCAL_DEPS:BOOL=OFF

//No help, variable specified on the command line.
VCPKG_BUILD_MAKE_TABLES:UNINITIALIZED=ON

//No help, variable specified on the command line.
VCPKG_CHAINLOAD_TOOLCHAIN_FILE:UNINITIALIZED=/home/brandon/vcpkg/scripts/toolchains/linux.cmake

//No help, variable specified on the command line.
VCPKG_CRT_LINKAGE:UNINITIALIZED=dynamic

//No help, variable specified on the command line.
VCPKG_CXX_FLAGS:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_CXX_FLAGS_DEBUG:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_CXX_FLAGS_RELEASE:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_C_FLAGS:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_C_FLAGS_DEBUG:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_C_FLAGS_RELEASE:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_HOST_TRIPLET:UNINITIALIZED=x64-linux

//The directory which contains the installed libraries for each
// triplet
VCPKG_INSTALLED_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed

//Path to a library.
VCPKG_LIBFFI_LIBRARY_DEBUG:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libffi.a

//Path to a library.
VCPKG_LIBFFI_LIBRARY_RELEASE:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libffi.a

//No help, variable specified on the command line.
VCPKG_LINKER_FLAGS:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_LINKER_FLAGS_DEBUG:UNINITIALIZED=

//No help, variable specified on the command line.
VCPKG_LINKER_FLAGS_RELEASE:UNINITIALIZED=

//The path to the vcpkg manifest directory.
VCPKG_MANIFEST_DIR:PATH=

//Use manifest mode, as opposed to classic mode.
VCPKG_MANIFEST_MODE:BOOL=OFF

//No help, variable specified on the command line.
VCPKG_PLATFORM_TOOLSET:UNINITIALIZED=external

//Appends the vcpkg paths to CMAKE_PREFIX_PATH, CMAKE_LIBRARY_PATH
// and CMAKE_FIND_ROOT_PATH so that vcpkg libraries/packages are
// found after toolchain/system libraries/packages.
VCPKG_PREFER_SYSTEM_LIBS:BOOL=OFF

//Enable the setup of CMAKE_PROGRAM_PATH to vcpkg paths
VCPKG_SETUP_CMAKE_PROGRAM_PATH:BOOL=ON

//No help, variable specified on the command line.
VCPKG_SET_CHARSET_FLAG:UNINITIALIZED=ON

//No help, variable specified on the command line.
VCPKG_TARGET_ARCHITECTURE:UNINITIALIZED=x64

//Vcpkg target triplet (ex. x86-windows)
VCPKG_TARGET_TRIPLET:STRING=x64-linux

//Trace calls to find_package()
VCPKG_TRACE_FIND_PACKAGE:BOOL=OFF

//Setup CMAKE_PROGRAM_PATH to use host tools
VCPKG_USE_HOST_TOOLS:BOOL=ON

//Enables messages from the VCPKG toolchain for debugging purposes.
VCPKG_VERBOSE:BOOL=OFF

//The directory containing a CMake configuration file for Vorbis.
Vorbis_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/Vorbis

//The XDG apps dir
XDG_APPS_INSTALL_DIR:STRING=share/applications

//The install dir for the xdg mimetypes
XDG_MIME_INSTALL_DIR:STRING=share/mime/packages

//(experimental) Automatically copy dependencies into the install
// target directory for executables. Requires CMake 3.14.
X_VCPKG_APPLOCAL_DEPS_INSTALL:BOOL=OFF

//(experimental) Add USES_TERMINAL to VCPKG_APPLOCAL_DEPS to force
// serialization.
X_VCPKG_APPLOCAL_DEPS_SERIALIZED:BOOL=OFF

//Path to a library.
Z_VCPKG_HAS_LIBM:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so

//Path to a library.
Z_VCPKG_HAS_LIBRT:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.a

//The directory which contains the installed libraries for each
// triplet
_VCPKG_INSTALLED_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed

//No help, variable specified on the command line.
_VCPKG_ROOT_DIR:UNINITIALIZED=/home/brandon/vcpkg

//Path to a file.
_glib2_config_header:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include

//compile ALSA support (if it is available)
enable-alsa:BOOL=ON

//compile support for sound file output
enable-aufile:BOOL=ON

//No help, variable specified on the command line.
enable-coreaudio:BOOL=OFF

//No help, variable specified on the command line.
enable-coremidi:BOOL=OFF

//enable gcov code coverage
enable-coverage:BOOL=OFF

//compile DBUS support (if it is available)
enable-dbus:BOOL=OFF

//compile DirectSound support (if it is available)
enable-dsound:BOOL=OFF

//enable type float instead of double for DSP samples
enable-floats:BOOL=OFF

//enable Floating Point Exception checks and debug messages
enable-fpe-check:BOOL=OFF

//No help, variable specified on the command line.
enable-framework:BOOL=OFF

//enable IPv6 support at the cost of disabling IPv4
enable-ipv6:BOOL=ON

//compile JACK support (if it is available)
enable-jack:BOOL=OFF

//enable LADSPA effect units
enable-ladspa:BOOL=ON

//compile LASH support (if it is available)
enable-lash:BOOL=OFF

//use libinstpatch (if available) to load DLS and GIG files
enable-libinstpatch:BOOL=OFF

//compile libsndfile support (if it is available)
enable-libsndfile:BOOL=ON

//compile MidiShare support (if it is available)
enable-midishare:BOOL=OFF

//enable network support (requires BSD sockets)
enable-network:BOOL=ON

//compile Oboe support (requires OpenSLES and/or AAudio)
enable-oboe:BOOL=OFF

//enable OpenMP support (parallelization of soundfont decoding,
// vectorization of voice mixing, etc.)
enable-openmp:BOOL=OFF

//compile OpenSLES support (if it is available)
enable-opensles:BOOL=OFF

//compile OSS support (if it is available)
enable-oss:BOOL=OFF

//compile PipeWire support (if it is available)
enable-pipewire:BOOL=OFF

//compile PortAudio support
enable-portaudio:BOOL=OFF

//profile the dsp code
enable-profiling:BOOL=OFF

//compile PulseAudio support (if it is available)
enable-pulseaudio:BOOL=OFF

//compile readline lib line editing (if it is available)
enable-readline:BOOL=OFF

//compile SDL2 audio support (if it is available)
enable-sdl2:BOOL=OFF

//compile systemd support (if it is available)
enable-systemd:BOOL=OFF

//enable multi-threading support (such as parallel voice synthesis)
enable-threads:BOOL=ON

//enable SIGFPE trap on Floating Point Exceptions
enable-trap-on-fpe:BOOL=OFF

//compile and link against UBSan (for debugging fluidsynth internals)
enable-ubsan:BOOL=OFF

//compile Windows WASAPI support (if it is available)
enable-wasapi:BOOL=OFF

//compile Windows WaveOut support (if it is available)
enable-waveout:BOOL=OFF

//compile Windows MIDI support (if it is available)
enable-winmidi:BOOL=OFF

//Value Computed by CMake
gentables_BINARY_DIR:STATIC=/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/src/gentables

//Value Computed by CMake
gentables_IS_TOP_LEVEL:STATIC=OFF

//Value Computed by CMake
gentables_SOURCE_DIR:STATIC=/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables

//The directory containing a CMake configuration file for libffi.
libffi_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/libffi

//The directory containing a CMake configuration file for mp3lame.
mp3lame_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/mp3lame

//The directory containing a CMake configuration file for mpg123.
mpg123_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/mpg123

//Path to a library.
pkgcfg_lib_PC_GLIB2_glib-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a

//Path to a library.
pkgcfg_lib_PC_GLIB2_m:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so

//Path to a library.
pkgcfg_lib_PC_GLIB2_pcre2-8:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libpcre2-8.a

//Path to a library.
pkgcfg_lib_PC_GMODULE2_ffi:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libffi.a

//Path to a library.
pkgcfg_lib_PC_GMODULE2_glib-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a

//Path to a library.
pkgcfg_lib_PC_GMODULE2_gmodule-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgmodule-2.0.a

//Path to a library.
pkgcfg_lib_PC_GMODULE2_gobject-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgobject-2.0.a

//Path to a library.
pkgcfg_lib_PC_GMODULE2_m:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so

//Path to a library.
pkgcfg_lib_PC_GMODULE2_pcre2-8:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libpcre2-8.a

//Path to a library.
pkgcfg_lib_PC_GTHREAD2_glib-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a

//Path to a library.
pkgcfg_lib_PC_GTHREAD2_gthread-2.0:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a

//Path to a library.
pkgcfg_lib_PC_GTHREAD2_m:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so

//Path to a library.
pkgcfg_lib_PC_GTHREAD2_pcre2-8:FILEPATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libpcre2-8.a

//The directory containing a CMake configuration file for unofficial-libffi.
unofficial-libffi_DIR:PATH=/home/brandon/Justly/build/vcpkg_installed/x64-linux/share/unofficial-libffi

//No help, variable specified on the command line.
{_option}:BOOL=ON

########################
# INTERNAL cache entries
########################

//ADVANCED property for variable: ALSA_INCLUDE_DIR
ALSA_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ALSA_LIBRARY_DEBUG
ALSA_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ALSA_LIBRARY_RELEASE
ALSA_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: BUNDLE_INSTALL_DIR
BUNDLE_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=29
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/ccmake
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Test CMAKE_HAVE_LIBC_PTHREAD
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=6
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/share/cmake-3.29
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_TOOLCHAIN_FILE
CMAKE_TOOLCHAIN_FILE-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DBUS_INTERFACES_INSTALL_DIR
DBUS_INTERFACES_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DBUS_SERVICES_INSTALL_DIR
DBUS_SERVICES_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DBUS_SYSTEM_SERVICES_INSTALL_DIR
DBUS_SYSTEM_SERVICES_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DEFAULT_SOUNDFONT
DEFAULT_SOUNDFONT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE
DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_EXECUTABLE
DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
//Details about finding ALSA
FIND_PACKAGE_MESSAGE_DETAILS_ALSA:INTERNAL=[optimized;/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libasound.a;debug;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a][/home/brandon/Justly/build/vcpkg_installed/x64-linux/include][v1.2.11(0.9.1)]
//Details about finding Doxygen
FIND_PACKAGE_MESSAGE_DETAILS_Doxygen:INTERNAL=[/usr/bin/doxygen][cfound components: doxygen dot ][v1.9.4()]
//Details about finding GLib2
FIND_PACKAGE_MESSAGE_DETAILS_GLib2:INTERNAL=[/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a][/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a][/home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include][v2.78.4(2.6.5)]
//Details about finding OpenMP
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP:INTERNAL=[TRUE][cfound components: C ][v4.5()]
//Details about finding OpenMP_C
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()]
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
//ADVANCED property for variable: FRAMEWORK_INSTALL_DIR
FRAMEWORK_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLib2_INCLUDE_DIR
GLib2_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLib2_glib-2_LIBRARY
GLib2_glib-2_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLib2_gmodule-2_LIBRARY
GLib2_gmodule-2_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLib2_gobject-2_LIBRARY
GLib2_gobject-2_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLib2_gthread-2_LIBRARY
GLib2_gthread-2_LIBRARY-ADVANCED:INTERNAL=1
//Have include arpa/inet.h
HAVE_ARPA_INET_H:INTERNAL=1
//Have symbol cosf
HAVE_COSF:INTERNAL=1
//Have symbol DIR
HAVE_DIRENT_H:INTERNAL=1
//Have include errno.h
HAVE_ERRNO_H:INTERNAL=1
//Have symbol fabsf
HAVE_FABSF:INTERNAL=1
//Have include fcntl.h
HAVE_FCNTL_H:INTERNAL=1
//Have include getopt.h
HAVE_GETOPT_H:INTERNAL=1
//Test HAVE_INCOMPATIBLE_POINTER_TYPES
HAVE_INCOMPATIBLE_POINTER_TYPES:INTERNAL=1
//Have symbol inet_ntop
HAVE_INETNTOP:INTERNAL=1
//Have include ladspa.h
HAVE_LADSPA_H:INTERNAL=1
//Have include limits.h
HAVE_LIMITS_H:INTERNAL=1
//Have symbol logf
HAVE_LOGF:INTERNAL=1
//Result of TRY_COMPILE
HAVE_LONG_LONG:INTERNAL=TRUE
//Have include math.h
HAVE_MATH_H:INTERNAL=1
//Have include netinet/in.h
HAVE_NETINET_IN_H:INTERNAL=1
//Have include netinet/tcp.h
HAVE_NETINET_TCP_H:INTERNAL=1
//Have symbol powf
HAVE_POWF:INTERNAL=1
//Have include pthread.h
HAVE_PTHREAD_H:INTERNAL=1
//Have include signal.h
HAVE_SIGNAL_H:INTERNAL=1
//Have symbol sinf
HAVE_SINF:INTERNAL=1
//Result of TRY_COMPILE
HAVE_SOCKLEN_T:INTERNAL=TRUE
//Have symbol sqrtf
HAVE_SQRTF:INTERNAL=1
//Have include stdarg.h
HAVE_STDARG_H:INTERNAL=1
//Have include stdio.h
HAVE_STDIO_H:INTERNAL=1
//Have include sys/mman.h
HAVE_SYS_MMAN_H:INTERNAL=1
//Have include sys/socket.h
HAVE_SYS_SOCKET_H:INTERNAL=1
//Have include sys/time.h
HAVE_SYS_TIME_H:INTERNAL=1
//Have include unistd.h
HAVE_UNISTD_H:INTERNAL=1
//ADVANCED property for variable: LIBXSLT_EXSLT_INCLUDE_DIR
LIBXSLT_EXSLT_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXSLT_EXSLT_LIBRARY
LIBXSLT_EXSLT_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXSLT_INCLUDE_DIR
LIBXSLT_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXSLT_LIBRARY
LIBXSLT_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXSLT_XSLTPROC_EXECUTABLE
LIBXSLT_XSLTPROC_EXECUTABLE-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(long long)
LONG_LONG:INTERNAL=8
//Result of TRY_COMPILE
OpenMP_COMPILE_RESULT_CXX_fopenmp:INTERNAL=TRUE
//Result of TRY_COMPILE
OpenMP_COMPILE_RESULT_C_fopenmp:INTERNAL=TRUE
//ADVANCED property for variable: OpenMP_CXX_FLAGS
OpenMP_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMP_CXX_LIB_NAMES
OpenMP_CXX_LIB_NAMES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMP_C_FLAGS
OpenMP_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMP_C_LIB_NAMES
OpenMP_C_LIB_NAMES-ADVANCED:INTERNAL=1
//C compiler's OpenMP specification date
OpenMP_C_SPEC_DATE:INTERNAL=201511
//Result of TRY_COMPILE
OpenMP_SPECTEST_C_:INTERNAL=TRUE
//ADVANCED property for variable: OpenMP_gomp_LIBRARY
OpenMP_gomp_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMP_pthread_LIBRARY
OpenMP_pthread_LIBRARY-ADVANCED:INTERNAL=1
PC_GLIB2_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GLIB2_CFLAGS_I:INTERNAL=
PC_GLIB2_CFLAGS_OTHER:INTERNAL=-pthread
PC_GLIB2_FOUND:INTERNAL=1
PC_GLIB2_INCLUDEDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GLIB2_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GLIB2_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lglib-2.0;-lm;-pthread;-lpcre2-8
PC_GLIB2_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GLIB2_LIBDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GLIB2_LIBRARIES:INTERNAL=glib-2.0;m;pcre2-8
PC_GLIB2_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GLIB2_LIBS:INTERNAL=
PC_GLIB2_LIBS_L:INTERNAL=
PC_GLIB2_LIBS_OTHER:INTERNAL=
PC_GLIB2_LIBS_PATHS:INTERNAL=
PC_GLIB2_MODULE_NAME:INTERNAL=glib-2.0
PC_GLIB2_PREFIX:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../..
PC_GLIB2_STATIC_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GLIB2_STATIC_CFLAGS_I:INTERNAL=
PC_GLIB2_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
PC_GLIB2_STATIC_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GLIB2_STATIC_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lglib-2.0;-lm;-pthread;-lpcre2-8
PC_GLIB2_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GLIB2_STATIC_LIBDIR:INTERNAL=
PC_GLIB2_STATIC_LIBRARIES:INTERNAL=glib-2.0;m;pcre2-8
PC_GLIB2_STATIC_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GLIB2_STATIC_LIBS:INTERNAL=
PC_GLIB2_STATIC_LIBS_L:INTERNAL=
PC_GLIB2_STATIC_LIBS_OTHER:INTERNAL=
PC_GLIB2_STATIC_LIBS_PATHS:INTERNAL=
PC_GLIB2_VERSION:INTERNAL=2.78.4
PC_GLIB2_glib-2.0_INCLUDEDIR:INTERNAL=
PC_GLIB2_glib-2.0_LIBDIR:INTERNAL=
PC_GLIB2_glib-2.0_PREFIX:INTERNAL=
PC_GLIB2_glib-2.0_VERSION:INTERNAL=
PC_GMODULE2_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GMODULE2_CFLAGS_I:INTERNAL=
PC_GMODULE2_CFLAGS_OTHER:INTERNAL=-pthread
PC_GMODULE2_FOUND:INTERNAL=1
PC_GMODULE2_INCLUDEDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GMODULE2_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GMODULE2_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lgobject-2.0;-lglib-2.0;-lm;-pthread;-lpcre2-8;-lffi
PC_GMODULE2_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GMODULE2_LIBDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GMODULE2_LIBRARIES:INTERNAL=gobject-2.0;glib-2.0;m;pcre2-8;ffi
PC_GMODULE2_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GMODULE2_LIBS:INTERNAL=
PC_GMODULE2_LIBS_L:INTERNAL=
PC_GMODULE2_LIBS_OTHER:INTERNAL=
PC_GMODULE2_LIBS_PATHS:INTERNAL=
PC_GMODULE2_MODULE_NAME:INTERNAL=gobject-2.0
PC_GMODULE2_PREFIX:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../..
PC_GMODULE2_STATIC_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GMODULE2_STATIC_CFLAGS_I:INTERNAL=
PC_GMODULE2_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
PC_GMODULE2_STATIC_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GMODULE2_STATIC_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lgobject-2.0;-lglib-2.0;-lm;-pthread;-lpcre2-8;-lffi
PC_GMODULE2_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GMODULE2_STATIC_LIBDIR:INTERNAL=
PC_GMODULE2_STATIC_LIBRARIES:INTERNAL=gobject-2.0;glib-2.0;m;pcre2-8;ffi
PC_GMODULE2_STATIC_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GMODULE2_STATIC_LIBS:INTERNAL=
PC_GMODULE2_STATIC_LIBS_L:INTERNAL=
PC_GMODULE2_STATIC_LIBS_OTHER:INTERNAL=
PC_GMODULE2_STATIC_LIBS_PATHS:INTERNAL=
PC_GMODULE2_VERSION:INTERNAL=2.78.4
PC_GMODULE2_gmodule-2.0_INCLUDEDIR:INTERNAL=
PC_GMODULE2_gmodule-2.0_LIBDIR:INTERNAL=
PC_GMODULE2_gmodule-2.0_PREFIX:INTERNAL=
PC_GMODULE2_gmodule-2.0_VERSION:INTERNAL=
PC_GMODULE2_gobject-2.0_INCLUDEDIR:INTERNAL=
PC_GMODULE2_gobject-2.0_LIBDIR:INTERNAL=
PC_GMODULE2_gobject-2.0_PREFIX:INTERNAL=
PC_GMODULE2_gobject-2.0_VERSION:INTERNAL=
PC_GTHREAD2_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GTHREAD2_CFLAGS_I:INTERNAL=
PC_GTHREAD2_CFLAGS_OTHER:INTERNAL=-pthread
PC_GTHREAD2_FOUND:INTERNAL=1
PC_GTHREAD2_INCLUDEDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include
PC_GTHREAD2_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GTHREAD2_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lgthread-2.0;-lglib-2.0;-lm;-pthread;-lpcre2-8
PC_GTHREAD2_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GTHREAD2_LIBDIR:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GTHREAD2_LIBRARIES:INTERNAL=gthread-2.0;glib-2.0;m;pcre2-8
PC_GTHREAD2_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GTHREAD2_LIBS:INTERNAL=
PC_GTHREAD2_LIBS_L:INTERNAL=
PC_GTHREAD2_LIBS_OTHER:INTERNAL=
PC_GTHREAD2_LIBS_PATHS:INTERNAL=
PC_GTHREAD2_MODULE_NAME:INTERNAL=gthread-2.0
PC_GTHREAD2_PREFIX:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../..
PC_GTHREAD2_STATIC_CFLAGS:INTERNAL=-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;-pthread;-I/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GTHREAD2_STATIC_CFLAGS_I:INTERNAL=
PC_GTHREAD2_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
PC_GTHREAD2_STATIC_INCLUDE_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../../include/glib-2.0;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib/glib-2.0/include
PC_GTHREAD2_STATIC_LDFLAGS:INTERNAL=-L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib;-lgthread-2.0;-lglib-2.0;-lm;-pthread;-lpcre2-8
PC_GTHREAD2_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread
PC_GTHREAD2_STATIC_LIBDIR:INTERNAL=
PC_GTHREAD2_STATIC_LIBRARIES:INTERNAL=gthread-2.0;glib-2.0;m;pcre2-8
PC_GTHREAD2_STATIC_LIBRARY_DIRS:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib
PC_GTHREAD2_STATIC_LIBS:INTERNAL=
PC_GTHREAD2_STATIC_LIBS_L:INTERNAL=
PC_GTHREAD2_STATIC_LIBS_OTHER:INTERNAL=
PC_GTHREAD2_STATIC_LIBS_PATHS:INTERNAL=
PC_GTHREAD2_VERSION:INTERNAL=2.78.4
PC_GTHREAD2_gthread-2.0_INCLUDEDIR:INTERNAL=
PC_GTHREAD2_gthread-2.0_LIBDIR:INTERNAL=
PC_GTHREAD2_gthread-2.0_PREFIX:INTERNAL=
PC_GTHREAD2_gthread-2.0_VERSION:INTERNAL=
PC_LIBXSLT_CFLAGS:INTERNAL=
PC_LIBXSLT_CFLAGS_I:INTERNAL=
PC_LIBXSLT_CFLAGS_OTHER:INTERNAL=
PC_LIBXSLT_EXSLT_CFLAGS:INTERNAL=
PC_LIBXSLT_EXSLT_CFLAGS_I:INTERNAL=
PC_LIBXSLT_EXSLT_CFLAGS_OTHER:INTERNAL=
PC_LIBXSLT_EXSLT_FOUND:INTERNAL=
PC_LIBXSLT_EXSLT_INCLUDEDIR:INTERNAL=
PC_LIBXSLT_EXSLT_LIBDIR:INTERNAL=
PC_LIBXSLT_EXSLT_LIBS:INTERNAL=
PC_LIBXSLT_EXSLT_LIBS_L:INTERNAL=
PC_LIBXSLT_EXSLT_LIBS_OTHER:INTERNAL=
PC_LIBXSLT_EXSLT_LIBS_PATHS:INTERNAL=
PC_LIBXSLT_EXSLT_MODULE_NAME:INTERNAL=
PC_LIBXSLT_EXSLT_PREFIX:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_CFLAGS:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_CFLAGS_I:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_CFLAGS_OTHER:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_LIBDIR:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_LIBS:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_LIBS_L:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_LIBS_OTHER:INTERNAL=
PC_LIBXSLT_EXSLT_STATIC_LIBS_PATHS:INTERNAL=
PC_LIBXSLT_EXSLT_VERSION:INTERNAL=
PC_LIBXSLT_EXSLT_libexslt_INCLUDEDIR:INTERNAL=
PC_LIBXSLT_EXSLT_libexslt_LIBDIR:INTERNAL=
PC_LIBXSLT_EXSLT_libexslt_PREFIX:INTERNAL=
PC_LIBXSLT_EXSLT_libexslt_VERSION:INTERNAL=
PC_LIBXSLT_FOUND:INTERNAL=
PC_LIBXSLT_INCLUDEDIR:INTERNAL=
PC_LIBXSLT_LIBDIR:INTERNAL=
PC_LIBXSLT_LIBS:INTERNAL=
PC_LIBXSLT_LIBS_L:INTERNAL=
PC_LIBXSLT_LIBS_OTHER:INTERNAL=
PC_LIBXSLT_LIBS_PATHS:INTERNAL=
PC_LIBXSLT_MODULE_NAME:INTERNAL=
PC_LIBXSLT_PREFIX:INTERNAL=
PC_LIBXSLT_STATIC_CFLAGS:INTERNAL=
PC_LIBXSLT_STATIC_CFLAGS_I:INTERNAL=
PC_LIBXSLT_STATIC_CFLAGS_OTHER:INTERNAL=
PC_LIBXSLT_STATIC_LIBDIR:INTERNAL=
PC_LIBXSLT_STATIC_LIBS:INTERNAL=
PC_LIBXSLT_STATIC_LIBS_L:INTERNAL=
PC_LIBXSLT_STATIC_LIBS_OTHER:INTERNAL=
PC_LIBXSLT_STATIC_LIBS_PATHS:INTERNAL=
PC_LIBXSLT_VERSION:INTERNAL=
PC_LIBXSLT_libxslt_INCLUDEDIR:INTERNAL=
PC_LIBXSLT_libxslt_LIBDIR:INTERNAL=
PC_LIBXSLT_libxslt_PREFIX:INTERNAL=
PC_LIBXSLT_libxslt_VERSION:INTERNAL=
//ADVANCED property for variable: PKG_CONFIG_ARGN
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(socklen_t)
SOCKLEN_T:INTERNAL=4
//System has ANSI C header files
STDC_HEADERS:INTERNAL=1
//Have include dlfcn.h;stdint.h;stddef.h;inttypes.h;stdlib.h;strings.h;string.h;float.h
StandardHeadersExist:INTERNAL=1
//ADVANCED property for variable: VCPKG_LIBFFI_LIBRARY_DEBUG
VCPKG_LIBFFI_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VCPKG_LIBFFI_LIBRARY_RELEASE
VCPKG_LIBFFI_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//Install the dependencies listed in your manifest:
//\n    If this is off, you will have to manually install your dependencies.
//\n    See https://github.com/microsoft/vcpkg/tree/master/docs/specifications/manifests.md
// for more info.
//\n
VCPKG_MANIFEST_INSTALL:INTERNAL=OFF
//ADVANCED property for variable: VCPKG_VERBOSE
VCPKG_VERBOSE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XDG_APPS_INSTALL_DIR
XDG_APPS_INSTALL_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XDG_MIME_INSTALL_DIR
XDG_MIME_INSTALL_DIR-ADVANCED:INTERNAL=1
//Making sure VCPKG_MANIFEST_MODE doesn't change
Z_VCPKG_CHECK_MANIFEST_MODE:INTERNAL=OFF
//Vcpkg root directory
Z_VCPKG_ROOT_DIR:INTERNAL=/home/brandon/vcpkg
//linker supports push/pop state
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug
__pkg_config_arguments_PC_GLIB2:INTERNAL=QUIET;glib-2.0
__pkg_config_arguments_PC_GMODULE2:INTERNAL=QUIET;gobject-2.0
__pkg_config_arguments_PC_GTHREAD2:INTERNAL=QUIET;gthread-2.0
__pkg_config_checked_PC_GLIB2:INTERNAL=1
__pkg_config_checked_PC_GMODULE2:INTERNAL=1
__pkg_config_checked_PC_GTHREAD2:INTERNAL=1
__pkg_config_checked_PC_LIBXSLT:INTERNAL=1
__pkg_config_checked_PC_LIBXSLT_EXSLT:INTERNAL=1
//Test _have_inline
_have_inline:INTERNAL=1
//Test _have_vla
_have_vla:INTERNAL=1
//Test freeExists
freeExists:INTERNAL=1
//Test memchrExists
memchrExists:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GLIB2_glib-2.0
pkgcfg_lib_PC_GLIB2_glib-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GLIB2_m
pkgcfg_lib_PC_GLIB2_m-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GLIB2_pcre2-8
pkgcfg_lib_PC_GLIB2_pcre2-8-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_ffi
pkgcfg_lib_PC_GMODULE2_ffi-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_glib-2.0
pkgcfg_lib_PC_GMODULE2_glib-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_gmodule-2.0
pkgcfg_lib_PC_GMODULE2_gmodule-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_gobject-2.0
pkgcfg_lib_PC_GMODULE2_gobject-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_m
pkgcfg_lib_PC_GMODULE2_m-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMODULE2_pcre2-8
pkgcfg_lib_PC_GMODULE2_pcre2-8-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GTHREAD2_glib-2.0
pkgcfg_lib_PC_GTHREAD2_glib-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GTHREAD2_gthread-2.0
pkgcfg_lib_PC_GTHREAD2_gthread-2.0-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GTHREAD2_m
pkgcfg_lib_PC_GTHREAD2_m-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GTHREAD2_pcre2-8
pkgcfg_lib_PC_GTHREAD2_pcre2-8-ADVANCED:INTERNAL=1
prefix_result:INTERNAL=/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib

vcpkg fluidsynth configure output:

[1/2] "/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake" -E chdir ".." "/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake" "/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean" "-G" "Ninja" "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_INSTALL_PREFIX=/home/brandon/vcpkg/packages/fluidsynth_x64-linux" "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" "-DVCPKG_HOST_TRIPLET=x64-linux" "-DVCPKG_BUILD_MAKE_TABLES=ON" "-Denable-libsndfile=ON" "-Denable-pulseaudio=OFF" "-D{_option}:BOOL=ON" "-D{_option}:BOOL=ON" "-Denable-dsound:BOOL=OFF" "-Denable-wasapi:BOOL=OFF" "-Denable-waveout:BOOL=OFF" "-Denable-winmidi:BOOL=OFF" "-DHAVE_MMSYSTEM_H:BOOL=OFF" "-DHAVE_DSOUND_H:BOOL=OFF" "-DHAVE_OBJBASE_H:BOOL=OFF" "-Denable-coreaudio:BOOL=OFF" "-Denable-coremidi:BOOL=OFF" "-DCOREAUDIO_FOUND:BOOL=OFF" "-DCOREMIDI_FOUND:BOOL=OFF" "-Denable-opensles:BOOL=OFF" "-DOpenSLES_FOUND:BOOL=OFF" "-Denable-coverage:BOOL=OFF" "-Denable-dbus:BOOL=OFF" "-Denable-floats:BOOL=OFF" "-Denable-fpe-check:BOOL=OFF" "-Denable-framework:BOOL=OFF" "-Denable-jack:BOOL=OFF" "-Denable-lash:BOOL=OFF" "-Denable-libinstpatch:BOOL=OFF" "-Denable-midishare:BOOL=OFF" "-Denable-oboe:BOOL=OFF" "-Denable-openmp:BOOL=OFF" "-Denable-oss:BOOL=OFF" "-Denable-pipewire:BOOL=OFF" "-Denable-portaudio:BOOL=OFF" "-Denable-profiling:BOOL=OFF" "-Denable-readline:BOOL=OFF" "-Denable-sdl2:BOOL=OFF" "-Denable-systemd:BOOL=OFF" "-Denable-trap-on-fpe:BOOL=OFF" "-Denable-ubsan:BOOL=OFF" "-DPKG_CONFIG_EXECUTABLE=/bin/pkg-config" "-DCMAKE_MAKE_PROGRAM=/usr/bin/ninja" "-DCMAKE_SYSTEM_NAME=Linux" "-DBUILD_SHARED_LIBS=OFF" "-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=/home/brandon/vcpkg/scripts/toolchains/linux.cmake" "-DVCPKG_TARGET_TRIPLET=x64-linux" "-DVCPKG_SET_CHARSET_FLAG=ON" "-DVCPKG_PLATFORM_TOOLSET=external" "-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON" "-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON" "-DCMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY=ON" "-DCMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP=TRUE" "-DCMAKE_VERBOSE_MAKEFILE=ON" "-DVCPKG_APPLOCAL_DEPS=OFF" "-DCMAKE_TOOLCHAIN_FILE=/home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake" "-DCMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION=ON" "-DVCPKG_CXX_FLAGS=" "-DVCPKG_CXX_FLAGS_RELEASE=" "-DVCPKG_CXX_FLAGS_DEBUG=" "-DVCPKG_C_FLAGS=" "-DVCPKG_C_FLAGS_RELEASE=" "-DVCPKG_C_FLAGS_DEBUG=" "-DVCPKG_CRT_LINKAGE=dynamic" "-DVCPKG_LINKER_FLAGS=" "-DVCPKG_LINKER_FLAGS_RELEASE=" "-DVCPKG_LINKER_FLAGS_DEBUG=" "-DVCPKG_TARGET_ARCHITECTURE=x64" "-DCMAKE_INSTALL_LIBDIR:STRING=lib" "-DCMAKE_INSTALL_BINDIR:STRING=bin" "-D_VCPKG_ROOT_DIR=/home/brandon/vcpkg" "-D_VCPKG_INSTALLED_DIR=/home/brandon/Justly/build/vcpkg_installed" "-DVCPKG_MANIFEST_INSTALL=OFF"
-- The C compiler identification is GNU 13.2.0
-- The CXX compiler identification is GNU 13.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Checking whether system has ANSI C header files
-- Looking for 8 include files dlfcn.h, ..., float.h
-- Looking for 8 include files dlfcn.h, ..., float.h - found
-- Performing Test memchrExists
-- Performing Test memchrExists - Success
-- Performing Test freeExists
-- Performing Test freeExists - Success
-- ANSI C header files - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for DIR in sys/stat.h;sys/types.h;dirent.h
-- Looking for DIR in sys/stat.h;sys/types.h;dirent.h - found
-- Looking for stdio.h
-- Looking for stdio.h - found
-- Looking for math.h
-- Looking for math.h - found
-- Looking for errno.h
-- Looking for errno.h - found
-- Looking for stdarg.h
-- Looking for stdarg.h - found
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for sys/socket.h
-- Looking for sys/socket.h - found
-- Looking for netinet/in.h
-- Looking for netinet/in.h - found
-- Looking for netinet/tcp.h
-- Looking for netinet/tcp.h - found
-- Looking for arpa/inet.h
-- Looking for arpa/inet.h - found
-- Looking for limits.h
-- Looking for limits.h - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for signal.h
-- Looking for signal.h - found
-- Looking for getopt.h
-- Looking for getopt.h - found
-- Check size of long long
-- Check size of long long - done
-- Performing Test _have_inline
-- Performing Test _have_inline - Success
-- Performing Test _have_vla
-- Performing Test _have_vla - Success
-- Performing Test HAVE_INCOMPATIBLE_POINTER_TYPES
-- Performing Test HAVE_INCOMPATIBLE_POINTER_TYPES - Success
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Found GLib2: /home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libglib-2.0.a (found suitable version "2.78.4", minimum required is "2.6.5")
CMake Warning at /home/brandon/Justly/build/vcpkg_installed/x64-linux/share/libffi/libffiConfig.cmake:2 (message):
  find_package(libffi) is deprecated.

  libffi can be imported via CMake FindPkgConfig module:

      find_package(PkgConfig)
      pkg_check_modules(LIBFFI REQUIRED IMPORTED_TARGET libffi)
      target_link_libraries(main PRIVATE PkgConfig::LIBFFI)

  vcpkg provides proprietary CMake targets:

      find_package(unofficial-libffi CONFIG REQUIRED)
      target_link_libraries(main PRIVATE unofficial::libffi::libffi)

Call Stack (most recent call first):
  /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
  cmake_admin/FindGLib2.cmake:214 (find_package)
  /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
  CMakeLists.txt:525 (find_package)

-- Found ALSA: optimized;/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libasound.a;debug;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a (found suitable version "1.2.11", minimum required is "0.9.1")
-- Looking for ladspa.h
-- Looking for ladspa.h - found
-- Found OpenMP_C: -fopenmp (found version "4.5")
-- Found OpenMP: TRUE (found version "4.5") found components: C
-- Looking for sinf
-- Looking for sinf - found
-- Looking for cosf
-- Looking for cosf - found
-- Looking for fabsf
-- Looking for fabsf - found
-- Looking for powf
-- Looking for powf - found
-- Looking for sqrtf
-- Looking for sqrtf - found
-- Looking for logf
-- Looking for logf - found
-- Looking for inet_ntop
-- Looking for inet_ntop - found
-- Check size of socklen_t
-- Check size of socklen_t - done
CMake Deprecation Warning at src/gentables/CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.

-- Found Doxygen: /usr/bin/doxygen (found version "1.9.4") found components: doxygen dot
-- Could NOT find LibXslt (missing: LIBXSLT_LIBRARIES LIBXSLT_INCLUDE_DIR) 
-- 
**************************************************************
Build Summary:
Build type:            Release
Install Prefix:        /home/brandon/vcpkg/packages/fluidsynth_x64-linux

Audio / MIDI driver support:
  ALSA:                  yes
  CoreAudio:             no
  CoreMIDI:              no
  DSound:                no
  JACK:                  no
  MidiShare:             no
  Oboe:                  no
  OpenSLES:              no
  OS/2 DART:             no
  OSS:                   no
  PipeWire:              no
  PortAudio:             no
  PulseAudio:            no
  SDL2:                  no
  WASAPI:                no
  WaveOut:               no
  WinMidi:               no

Support for SF3 files:   yes
Support for DLS files:   no (libinstpatch not found)

Audio to file rendering: yes
  libsndfile:            yes

Miscellaneous support:
  D-Bus:                 no
  LADSPA support:        yes
  LASH support:          no
  NETWORK Support:       yes
    IPV6 Support:        yes
  Readline:              no
  systemd:               no
  getopt:                yes

Developer nerds info:
  Samples type:          double
  Multithread rendering: yes
  OpenMP 4.0:            no
  Profiling:             no
  Debug Build:           no
  Trap on FPE (debug):   no
  Check FPE (debug):     no
  UBSan (debug):         no
  Coverage:              no

**************************************************************

-- Configuring done (2.3s)
-- Generating done (0.0s)
CMake Warning:
  Manually-specified variables were not used by the project:

    COREAUDIO_FOUND
    COREMIDI_FOUND
    FETCHCONTENT_FULLY_DISCONNECTED
    HAVE_DSOUND_H
    HAVE_MMSYSTEM_H
    HAVE_OBJBASE_H
    OpenSLES_FOUND
    VCPKG_PLATFORM_TOOLSET
    VCPKG_SET_CHARSET_FLAG
    _VCPKG_ROOT_DIR
    enable-coreaudio
    enable-coremidi
    enable-dsound
    enable-framework
    enable-wasapi
    enable-waveout
    enable-winmidi

-- Build files have been written to: /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-rel
[2/2] "/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake" -E chdir "../../x64-linux-dbg" "/home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake" "/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean" "-G" "Ninja" "-DCMAKE_BUILD_TYPE=Debug" "-DCMAKE_INSTALL_PREFIX=/home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug" "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" "-DVCPKG_HOST_TRIPLET=x64-linux" "-DVCPKG_BUILD_MAKE_TABLES=ON" "-Denable-libsndfile=ON" "-Denable-pulseaudio=OFF" "-D{_option}:BOOL=ON" "-D{_option}:BOOL=ON" "-Denable-dsound:BOOL=OFF" "-Denable-wasapi:BOOL=OFF" "-Denable-waveout:BOOL=OFF" "-Denable-winmidi:BOOL=OFF" "-DHAVE_MMSYSTEM_H:BOOL=OFF" "-DHAVE_DSOUND_H:BOOL=OFF" "-DHAVE_OBJBASE_H:BOOL=OFF" "-Denable-coreaudio:BOOL=OFF" "-Denable-coremidi:BOOL=OFF" "-DCOREAUDIO_FOUND:BOOL=OFF" "-DCOREMIDI_FOUND:BOOL=OFF" "-Denable-opensles:BOOL=OFF" "-DOpenSLES_FOUND:BOOL=OFF" "-Denable-coverage:BOOL=OFF" "-Denable-dbus:BOOL=OFF" "-Denable-floats:BOOL=OFF" "-Denable-fpe-check:BOOL=OFF" "-Denable-framework:BOOL=OFF" "-Denable-jack:BOOL=OFF" "-Denable-lash:BOOL=OFF" "-Denable-libinstpatch:BOOL=OFF" "-Denable-midishare:BOOL=OFF" "-Denable-oboe:BOOL=OFF" "-Denable-openmp:BOOL=OFF" "-Denable-oss:BOOL=OFF" "-Denable-pipewire:BOOL=OFF" "-Denable-portaudio:BOOL=OFF" "-Denable-profiling:BOOL=OFF" "-Denable-readline:BOOL=OFF" "-Denable-sdl2:BOOL=OFF" "-Denable-systemd:BOOL=OFF" "-Denable-trap-on-fpe:BOOL=OFF" "-Denable-ubsan:BOOL=OFF" "-DPKG_CONFIG_EXECUTABLE=/bin/pkg-config" "-DCMAKE_MAKE_PROGRAM=/usr/bin/ninja" "-DCMAKE_SYSTEM_NAME=Linux" "-DBUILD_SHARED_LIBS=OFF" "-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=/home/brandon/vcpkg/scripts/toolchains/linux.cmake" "-DVCPKG_TARGET_TRIPLET=x64-linux" "-DVCPKG_SET_CHARSET_FLAG=ON" "-DVCPKG_PLATFORM_TOOLSET=external" "-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON" "-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON" "-DCMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY=ON" "-DCMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP=TRUE" "-DCMAKE_VERBOSE_MAKEFILE=ON" "-DVCPKG_APPLOCAL_DEPS=OFF" "-DCMAKE_TOOLCHAIN_FILE=/home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake" "-DCMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION=ON" "-DVCPKG_CXX_FLAGS=" "-DVCPKG_CXX_FLAGS_RELEASE=" "-DVCPKG_CXX_FLAGS_DEBUG=" "-DVCPKG_C_FLAGS=" "-DVCPKG_C_FLAGS_RELEASE=" "-DVCPKG_C_FLAGS_DEBUG=" "-DVCPKG_CRT_LINKAGE=dynamic" "-DVCPKG_LINKER_FLAGS=" "-DVCPKG_LINKER_FLAGS_RELEASE=" "-DVCPKG_LINKER_FLAGS_DEBUG=" "-DVCPKG_TARGET_ARCHITECTURE=x64" "-DCMAKE_INSTALL_LIBDIR:STRING=lib" "-DCMAKE_INSTALL_BINDIR:STRING=bin" "-D_VCPKG_ROOT_DIR=/home/brandon/vcpkg" "-D_VCPKG_INSTALLED_DIR=/home/brandon/Justly/build/vcpkg_installed" "-DVCPKG_MANIFEST_INSTALL=OFF"
-- The C compiler identification is GNU 13.2.0
-- The CXX compiler identification is GNU 13.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Checking whether system has ANSI C header files
-- Looking for 8 include files dlfcn.h, ..., float.h
-- Looking for 8 include files dlfcn.h, ..., float.h - found
-- Performing Test memchrExists
-- Performing Test memchrExists - Success
-- Performing Test freeExists
-- Performing Test freeExists - Success
-- ANSI C header files - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for DIR in sys/stat.h;sys/types.h;dirent.h
-- Looking for DIR in sys/stat.h;sys/types.h;dirent.h - found
-- Looking for stdio.h
-- Looking for stdio.h - found
-- Looking for math.h
-- Looking for math.h - found
-- Looking for errno.h
-- Looking for errno.h - found
-- Looking for stdarg.h
-- Looking for stdarg.h - found
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for sys/socket.h
-- Looking for sys/socket.h - found
-- Looking for netinet/in.h
-- Looking for netinet/in.h - found
-- Looking for netinet/tcp.h
-- Looking for netinet/tcp.h - found
-- Looking for arpa/inet.h
-- Looking for arpa/inet.h - found
-- Looking for limits.h
-- Looking for limits.h - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for signal.h
-- Looking for signal.h - found
-- Looking for getopt.h
-- Looking for getopt.h - found
-- Check size of long long
-- Check size of long long - done
-- Performing Test _have_inline
-- Performing Test _have_inline - Success
-- Performing Test _have_vla
-- Performing Test _have_vla - Success
-- Performing Test HAVE_INCOMPATIBLE_POINTER_TYPES
-- Performing Test HAVE_INCOMPATIBLE_POINTER_TYPES - Success
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Found GLib2: /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a (found suitable version "2.78.4", minimum required is "2.6.5")
CMake Warning at /home/brandon/Justly/build/vcpkg_installed/x64-linux/share/libffi/libffiConfig.cmake:2 (message):
  find_package(libffi) is deprecated.

  libffi can be imported via CMake FindPkgConfig module:

      find_package(PkgConfig)
      pkg_check_modules(LIBFFI REQUIRED IMPORTED_TARGET libffi)
      target_link_libraries(main PRIVATE PkgConfig::LIBFFI)

  vcpkg provides proprietary CMake targets:

      find_package(unofficial-libffi CONFIG REQUIRED)
      target_link_libraries(main PRIVATE unofficial::libffi::libffi)

Call Stack (most recent call first):
  /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
  cmake_admin/FindGLib2.cmake:214 (find_package)
  /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
  CMakeLists.txt:525 (find_package)

-- Found ALSA: optimized;/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libasound.a;debug;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a (found suitable version "1.2.11", minimum required is "0.9.1")
-- Looking for ladspa.h
-- Looking for ladspa.h - found
-- Found OpenMP_C: -fopenmp (found version "4.5")
-- Found OpenMP: TRUE (found version "4.5") found components: C
-- Looking for sinf
-- Looking for sinf - found
-- Looking for cosf
-- Looking for cosf - found
-- Looking for fabsf
-- Looking for fabsf - found
-- Looking for powf
-- Looking for powf - found
-- Looking for sqrtf
-- Looking for sqrtf - found
-- Looking for logf
-- Looking for logf - found
-- Looking for inet_ntop
-- Looking for inet_ntop - found
-- Check size of socklen_t
-- Check size of socklen_t - done
CMake Deprecation Warning at src/gentables/CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.

-- Found Doxygen: /usr/bin/doxygen (found version "1.9.4") found components: doxygen dot
-- Could NOT find LibXslt (missing: LIBXSLT_LIBRARIES LIBXSLT_INCLUDE_DIR) 
-- 
**************************************************************
Build Summary:
Build type:            Debug
Install Prefix:        /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug

Audio / MIDI driver support:
  ALSA:                  yes
  CoreAudio:             no
  CoreMIDI:              no
  DSound:                no
  JACK:                  no
  MidiShare:             no
  Oboe:                  no
  OpenSLES:              no
  OS/2 DART:             no
  OSS:                   no
  PipeWire:              no
  PortAudio:             no
  PulseAudio:            no
  SDL2:                  no
  WASAPI:                no
  WaveOut:               no
  WinMidi:               no

Support for SF3 files:   yes
Support for DLS files:   no (libinstpatch not found)

Audio to file rendering: yes
  libsndfile:            yes

Miscellaneous support:
  D-Bus:                 no
  LADSPA support:        yes
  LASH support:          no
  NETWORK Support:       yes
    IPV6 Support:        yes
  Readline:              no
  systemd:               no
  getopt:                yes

Developer nerds info:
  Samples type:          double
  Multithread rendering: yes
  OpenMP 4.0:            no
  Profiling:             no
  Debug Build:           yes
  Trap on FPE (debug):   no
  Check FPE (debug):     no
  UBSan (debug):         no
  Coverage:              no

**************************************************************

-- Configuring done (2.3s)
-- Generating done (0.0s)
CMake Warning:
  Manually-specified variables were not used by the project:

    COREAUDIO_FOUND
    COREMIDI_FOUND
    FETCHCONTENT_FULLY_DISCONNECTED
    HAVE_DSOUND_H
    HAVE_MMSYSTEM_H
    HAVE_OBJBASE_H
    OpenSLES_FOUND
    VCPKG_PLATFORM_TOOLSET
    VCPKG_SET_CHARSET_FLAG
    _VCPKG_ROOT_DIR
    enable-coreaudio
    enable-coremidi
    enable-dsound
    enable-framework
    enable-wasapi
    enable-waveout
    enable-winmidi

-- Build files have been written to: /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg

vcpkg fluidsynth build output:

Change Dir: '/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg'

Run Build Command(s): /usr/bin/ninja -v -v -j13 install
[1/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/.. -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -MD -MT src/gentables/CMakeFiles/make_tables.dir/make_tables.c.o -MF src/gentables/CMakeFiles/make_tables.dir/make_tables.c.o.d -o src/gentables/CMakeFiles/make_tables.dir/make_tables.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/make_tables.c
[2/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/.. -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -MD -MT src/gentables/CMakeFiles/make_tables.dir/gen_conv.c.o -MF src/gentables/CMakeFiles/make_tables.dir/gen_conv.c.o.d -o src/gentables/CMakeFiles/make_tables.dir/gen_conv.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/gen_conv.c
[3/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/.. -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -MD -MT src/gentables/CMakeFiles/make_tables.dir/gen_rvoice_dsp.c.o -MF src/gentables/CMakeFiles/make_tables.dir/gen_rvoice_dsp.c.o.d -o src/gentables/CMakeFiles/make_tables.dir/gen_rvoice_dsp.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/gentables/gen_rvoice_dsp.c
[4/49] : && /usr/bin/cc -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -Wl,--as-needed src/gentables/CMakeFiles/make_tables.dir/make_tables.c.o src/gentables/CMakeFiles/make_tables.dir/gen_conv.c.o src/gentables/CMakeFiles/make_tables.dir/gen_rvoice_dsp.c.o -o src/gentables/make_tables  -lm && :
[5/49] cd /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/src && /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/src/gentables/make_tables /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/
[6/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_aufile.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_aufile.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_aufile.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers/fluid_aufile.c
[7/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_ringbuffer.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_ringbuffer.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_ringbuffer.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_ringbuffer.c
[8/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_list.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_list.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_list.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_list.c
[9/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sfont.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sfont.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sfont.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_sfont.c
[10/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_adsr_env.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_adsr_env.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_adsr_env.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_adsr_env.c
[11/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_hash.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_hash.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_hash.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_hash.c
[12/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_sys.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_sys.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_sys.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_sys.c
[13/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_conv.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_conv.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_conv.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_conv.c
[14/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_samplecache.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_samplecache.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_samplecache.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_samplecache.c
[15/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_alsa.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_alsa.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_alsa.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers/fluid_alsa.c
[16/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_settings.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_settings.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_settings.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils/fluid_settings.c
[17/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_defsfont.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_defsfont.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_defsfont.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c: In function ‘fluid_defsfont_load_all_sampledata’:
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:398: warning: ignoring ‘#pragma omp parallel’ [-Wunknown-pragmas]
  398 |     #pragma omp parallel
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:399: warning: ignoring ‘#pragma omp single’ [-Wunknown-pragmas]
  399 |     #pragma omp single
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:408: warning: ignoring ‘#pragma omp task’ [-Wunknown-pragmas]
  408 |             #pragma omp task firstprivate(sample,sfdata,defsfont) shared(sample_parsing_result, invalid_loops_were_sanitized) default(none)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:412: warning: ignoring ‘#pragma omp critical’ [-Wunknown-pragmas]
  412 |                     #pragma omp critical
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:423: warning: ignoring ‘#pragma omp critical’ [-Wunknown-pragmas]
  423 |                         #pragma omp critical
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:434: warning: ignoring ‘#pragma omp task’ [-Wunknown-pragmas]
  434 |             #pragma omp task firstprivate(sample, defsfont) shared(invalid_loops_were_sanitized) default(none)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_defsfont.c:443: warning: ignoring ‘#pragma omp critical’ [-Wunknown-pragmas]
  443 |                     #pragma omp critical
      | 
[18/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sffile.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sffile.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sffile.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader/fluid_sffile.c
[19/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_lfo.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_lfo.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_lfo.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_lfo.c
[20/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_chorus.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_chorus.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_chorus.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_chorus.c
[21/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_iir_filter.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_iir_filter.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_iir_filter.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_iir_filter.c
[22/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_event.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_event.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_event.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_event.c
[23/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_dsp.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_dsp.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_dsp.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_dsp.c
[24/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice.c
[25/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rev.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rev.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rev.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rev.c
[26/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_chan.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_chan.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_chan.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_chan.c
[27/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_gen.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_gen.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_gen.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_gen.c
[28/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_event.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_event.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_event.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_event.c
[29/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_mod.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_mod.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_mod.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_mod.c
[30/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_mixer.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_mixer.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_mixer.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c: In function ‘fluid_rvoice_mixer_process_fx’:
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:186: warning: ignoring ‘#pragma omp parallel’ [-Wunknown-pragmas]
  186 |         #pragma omp parallel default(none) shared(mixer, reverb_process_func, chorus_process_func, dry_count, current_blockcount, mix_fx_to_out, fx_channels_per_unit) firstprivate(in_rev, in_ch, out_rev_l, out_rev_r, out_ch_l, out_ch_r) num_threads(fx_mixer_threads)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:197: warning: ignoring ‘#pragma omp for’ [-Wunknown-pragmas]
  197 |                 #pragma omp for schedule(static)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:233: warning: ignoring ‘#pragma omp for’ [-Wunknown-pragmas]
  233 |                 #pragma omp for schedule(static)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c: In function ‘fluid_rvoice_buffers_mix’:
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:481: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
  481 |             #pragma omp simd aligned(dsp_buf,buf:FLUID_DEFAULT_ALIGNMENT)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:492: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
  492 |                 #pragma omp simd aligned(dsp_buf,buf:FLUID_DEFAULT_ALIGNMENT)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c: In function ‘fluid_mixer_buffers_mix’:
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:1416: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
 1416 |         #pragma omp simd aligned(base_dst,base_src:FLUID_DEFAULT_ALIGNMENT)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:1430: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
 1430 |         #pragma omp simd aligned(base_dst,base_src:FLUID_DEFAULT_ALIGNMENT)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:1451: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
 1451 |         #pragma omp simd aligned(base_dst,base_src:FLUID_DEFAULT_ALIGNMENT)
      | 
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice/fluid_rvoice_mixer.c:1465: warning: ignoring ‘#pragma omp simd’ [-Wunknown-pragmas]
 1465 |         #pragma omp simd aligned(base_dst,base_src:FLUID_DEFAULT_ALIGNMENT)
      | 
[31/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth_monopoly.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth_monopoly.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth_monopoly.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_synth_monopoly.c
[32/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_tuning.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_tuning.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_tuning.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_tuning.c
[33/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_seqbind.c
[34/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_seq.c
[35/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_adriver.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_adriver.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_adriver.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers/fluid_adriver.c
[36/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi_router.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi_router.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi_router.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_midi_router.c
[37/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_voice.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_voice.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_voice.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_voice.c
[38/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_mdriver.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_mdriver.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_mdriver.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers/fluid_mdriver.c
[39/49] /usr/bin/c++ -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wno-unused-parameter -Wcast-align -g -std=c++98 -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind_notes.cpp.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind_notes.cpp.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind_notes.cpp.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_seqbind_notes.cpp
[40/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_midi.c
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_midi.c: In function ‘fluid_player_set_bpm’:
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_midi.c:2566:5: warning: ‘fluid_player_set_midi_tempo’ is deprecated [-Wdeprecated-declarations]
 2566 |     return fluid_player_set_midi_tempo(player, 60000000L / bpm);
      |     ^~~~~~
/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_midi.c:2543:5: note: declared here
 2543 | int fluid_player_set_midi_tempo(fluid_player_t *player, int tempo)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~
[41/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/fluidsynth.dir/fluidsynth.c.o -MF src/CMakeFiles/fluidsynth.dir/fluidsynth.c.o.d -o src/CMakeFiles/fluidsynth.dir/fluidsynth.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/fluidsynth.c
[42/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_filerenderer.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_filerenderer.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_filerenderer.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings/fluid_filerenderer.c
[43/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_ladspa.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_ladspa.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_ladspa.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings/fluid_ladspa.c
[44/49] /usr/bin/c++ -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wno-unused-parameter -Wcast-align -g -std=c++98 -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq_queue.cpp.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq_queue.cpp.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq_queue.cpp.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi/fluid_seq_queue.cpp
[45/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth/fluid_synth.c
[46/49] /usr/bin/cc -DDEBUG -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg -I/home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg/include -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/drivers -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/synth -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/rvoice -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/midi -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/utils -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/sfloader -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings -I/home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include/glib-2.0 -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/glib-2.0/include -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wno-unused-parameter -Wdeclaration-after-statement -Werror=implicit-function-declaration -Werror=incompatible-pointer-types -Wbad-function-cast -Wcast-align -g -g -std=gnu90 -fvisibility=hidden -pthread -MD -MT src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_cmd.c.o -MF src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_cmd.c.o.d -o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_cmd.c.o -c /home/brandon/vcpkg/buildtrees/fluidsynth/src/v2.3.5-439617cd68.clean/src/bindings/fluid_cmd.c
[47/49] : && /home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake -E rm -f src/libfluidsynth.a && /usr/bin/ar qc src/libfluidsynth.a  src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_alsa.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_aufile.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_conv.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_hash.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_list.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_ringbuffer.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_settings.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/utils/fluid_sys.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_defsfont.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sfont.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_sffile.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/sfloader/fluid_samplecache.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_adsr_env.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_chorus.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_iir_filter.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_lfo.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_dsp.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_event.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rvoice_mixer.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/rvoice/fluid_rev.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_chan.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_event.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_gen.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_mod.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_synth_monopoly.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_tuning.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/synth/fluid_voice.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_midi_router.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seqbind_notes.cpp.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/midi/fluid_seq_queue.cpp.o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_adriver.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/drivers/fluid_mdriver.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_cmd.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_filerenderer.c.o src/CMakeFiles/libfluidsynth-OBJ.dir/bindings/fluid_ladspa.c.o && /usr/bin/ranlib src/libfluidsynth.a && :
[48/49] : && /usr/bin/c++ -fPIC -Wall -W -Wpointer-arith -Wcast-qual -Wno-unused-parameter -Wcast-align -g -Wl,--as-needed src/CMakeFiles/fluidsynth.dir/fluidsynth.c.o -o src/fluidsynth -L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib -Wl,-rpath,/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib:  src/libfluidsynth.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libsndfile.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libvorbisenc.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libvorbis.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libFLAC.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libogg.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libopus.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libmpg123.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libmp3lame.a  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a  -ldl  -lrt  /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libgmodule-2.0.a  -lglib-2.0  -lm  -lpcre2-8  -lffi && :
[48/49] cd /home/brandon/vcpkg/buildtrees/fluidsynth/x64-linux-dbg && /home/brandon/vcpkg/downloads/tools/cmake-3.29.2-linux/cmake-3.29.2-linux-x86_64/bin/cmake -P cmake_install.cmake
-- Install configuration: "Debug"
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/pkgconfig/fluidsynth.pc
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FluidSynthConfig.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FluidSynthConfigVersion.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindFLAC.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindGLib2.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindInstPatch.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindJack.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindLASH.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindMidiShare.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindOgg.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindOpenSLES.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindOpus.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindPipeWire.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindPortAudio.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindReadline.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindSndFile.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindSystemd.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FindVorbis.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/Findlibffi.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/Findmp3lame.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/Findmpg123.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/PkgConfigHelpers.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/bin/fluidsynth
-- Set non-toolchain portion of runtime path of "/home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/bin/fluidsynth" to ""
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/libfluidsynth.a
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/audio.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/event.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/gen.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/ladspa.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/log.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/midi.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/misc.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/mod.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/seq.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/seqbind.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/settings.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/sfont.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/shell.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/synth.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/types.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/voice.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth/version.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/include/fluidsynth.h
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FluidSynthTargets.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/lib/cmake/fluidsynth/FluidSynthTargets-debug.cmake
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/bin/make_tables
-- Installing: /home/brandon/vcpkg/packages/fluidsynth_x64-linux/debug/share/man/man1/fluidsynth.1

My project configure output:

[main] Configuring project: Justly 
[driver] Removing /home/brandon/Justly/build/CMakeCache.txt
[driver] Removing /home/brandon/Justly/build/CMakeFiles
[proc] Executing command: /usr/bin/cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_INSTALL_PREFIX:STRING=/home/brandon/Justly/install -DCMAKE_TOOLCHAIN_FILE:STRING=~/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang-15 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++-15 -S/home/brandon/Justly -B/home/brandon/Justly/build -G Ninja
[cmake] Not searching for unused variables given on the command line.
[cmake] -- Running vcpkg install
[cmake] Detecting compiler hash for triplet x64-linux...
[cmake] Compiler found: /usr/bin/c++
[cmake] All requested packages are currently installed.
[cmake] Total install time: 536 ns
[cmake] The package fluidsynth provides CMake targets:
[cmake] 
[cmake]     find_package(FluidSynth CONFIG REQUIRED)
[cmake]     target_link_libraries(main PRIVATE FluidSynth::libfluidsynth)
[cmake]     add_custom_command(OUTPUT result COMMAND FluidSynth::fluidsynth ARGS ...)
[cmake] 
[cmake] The package nlohmann-json provides CMake targets:
[cmake] 
[cmake]     find_package(nlohmann_json CONFIG REQUIRED)
[cmake]     target_link_libraries(main PRIVATE nlohmann_json::nlohmann_json)
[cmake] 
[cmake] The package nlohmann-json can be configured to not provide implicit conversions via a custom triplet file:
[cmake] 
[cmake]     set(nlohmann-json_IMPLICIT_CONVERSIONS OFF)
[cmake] 
[cmake] For more information, see the docs here:
[cmake]     
[cmake]     https://json.nlohmann.me/api/macros/json_use_implicit_conversions/
[cmake] 
[cmake] json-schema-validator provides CMake targets:
[cmake] 
[cmake]   # this is heuristically generated, and may not be correct
[cmake]   find_package(nlohmann_json_schema_validator CONFIG REQUIRED)
[cmake]   target_link_libraries(main PRIVATE nlohmann_json_schema_validator::validator)
[cmake] 
[cmake] -- Running vcpkg install - done
[cmake] -- The CXX compiler identification is Clang 15.0.7
[cmake] -- Detecting CXX compiler ABI info
[cmake] -- Detecting CXX compiler ABI info - done
[cmake] -- Check for working CXX compiler: /usr/bin/clang++-15 - skipped
[cmake] -- Detecting CXX compile features
[cmake] -- Detecting CXX compile features - done
[cmake] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
[cmake] -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
[cmake] -- Found Threads: TRUE  
[cmake] -- Found GLib2: /home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a (found suitable version "2.78.4", minimum required is "2.6.5") 
[cmake] CMake Warning at build/vcpkg_installed/x64-linux/share/libffi/libffiConfig.cmake:2 (message):
[cmake]   find_package(libffi) is deprecated.
[cmake] 
[cmake]   libffi can be imported via CMake FindPkgConfig module:
[cmake] 
[cmake] 
[cmake] 
[cmake]       find_package(PkgConfig)
[cmake]       pkg_check_modules(LIBFFI REQUIRED IMPORTED_TARGET libffi)
[cmake]       target_link_libraries(main PRIVATE PkgConfig::LIBFFI)
[cmake] 
[cmake]   
[cmake] 
[cmake]   vcpkg provides proprietary CMake targets:
[cmake] 
[cmake] 
[cmake] 
[cmake]       find_package(unofficial-libffi CONFIG REQUIRED)
[cmake]       target_link_libraries(main PRIVATE unofficial::libffi::libffi)
[cmake] 
[cmake] Call Stack (most recent call first):
[cmake]   /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
[cmake]   build/vcpkg_installed/x64-linux/share/fluidsynth/FindGLib2.cmake:214 (find_package)
[cmake]   /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
[cmake]   /usr/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)
[cmake]   build/vcpkg_installed/x64-linux/share/fluidsynth/FluidSynthConfig.cmake:75 (find_dependency)
[cmake]   /home/brandon/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
[cmake]   CMakeLists.txt:22 (find_package)
[cmake] 
[cmake] 
[cmake] -- Found ALSA: optimized;/home/brandon/Justly/build/vcpkg_installed/x64-linux/lib/libasound.a;debug;/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/libasound.a (found suitable version "1.2.11", minimum required is "0.9.1") 
[cmake] -- Found nlohmann_json: /home/brandon/Justly/build/vcpkg_installed/x64-linux/share/nlohmann_json/nlohmann_jsonConfig.cmake (found version "3.11.3") 
[cmake] -- Performing Test HAVE_STDATOMIC
[cmake] -- Performing Test HAVE_STDATOMIC - Success
[cmake] -- Found WrapAtomic: TRUE  
[cmake] -- Found OpenGL: /usr/lib/x86_64-linux-gnu/libOpenGL.so   
[cmake] -- Found WrapOpenGL: TRUE  
[cmake] -- Found XKB: /usr/lib/x86_64-linux-gnu/libxkbcommon.so (found suitable version "1.5.0", minimum required is "0.5.0") 
[cmake] -- Found WrapVulkanHeaders: /usr/include  
[cmake] -- Performing Test has_all_warnings
[cmake] -- Performing Test has_all_warnings - Success
[cmake] -- Performing Test has_extra_warnings
[cmake] -- Performing Test has_extra_warnings - Success
[cmake] -- Configuring done (1.5s)
[cmake] -- Generating done (0.0s)
[cmake] -- Build files have been written to: /home/brandon/Justly/build

My project build output:

[main] Building folder: Justly 
[build] Starting build
[proc] Executing command: /usr/bin/cmake --build /home/brandon/Justly/build --config Debug --target all --
[build] Change Dir: '/home/brandon/Justly/build'
[build] 
[build] Run Build Command(s): /usr/bin/ninja -v all
[build] [1/36   2% :: 0.862] cd /home/brandon/Justly/build && /usr/bin/cmake -E cmake_autogen /home/brandon/Justly/build/CMakeFiles/JustlyLibrary_autogen.dir/AutogenInfo.json Debug && /usr/bin/cmake -E touch /home/brandon/Justly/build/JustlyLibrary_autogen/timestamp && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/brandon/Justly /home/brandon/Justly /home/brandon/Justly/build /home/brandon/Justly/build /home/brandon/Justly/build/JustlyLibrary_autogen/deps /home/brandon/Justly/build/CMakeFiles/d/61e07f553246a212a3ba83a8fa4f19c64edf5df5f9c2084dc8e73f2ce5c5a8f2.d
[build] [15/36   5% :: 1.955] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/instruments.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/instruments.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/instruments.cpp.o -c /home/brandon/Justly/src/instruments.cpp
[build] [16/36   8% :: 2.271] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/Instrument.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/Instrument.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/Instrument.cpp.o -c /home/brandon/Justly/src/Instrument.cpp
[build] [17/36  11% :: 4.381] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/Note.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/Note.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/Note.cpp.o -c /home/brandon/Justly/src/Note.cpp
[build] [18/36  13% :: 4.799] /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/JustlyLibrary_autogen/mocs_compilation.cpp.o -MF CMakeFiles/JustlyLibrary.dir/JustlyLibrary_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/JustlyLibrary_autogen/mocs_compilation.cpp.o -c /home/brandon/Justly/build/JustlyLibrary_autogen/mocs_compilation.cpp
[build] [19/36  16% :: 5.395] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/InstrumentsModel.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/InstrumentsModel.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/InstrumentsModel.cpp.o -c /home/brandon/Justly/src/InstrumentsModel.cpp
[build] [20/36  19% :: 6.478] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/CellChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/CellChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/CellChange.cpp.o -c /home/brandon/Justly/src/CellChange.cpp
[build] [21/36  22% :: 6.680] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/InsertEmptyChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/InsertEmptyChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/InsertEmptyChange.cpp.o -c /home/brandon/Justly/src/InsertEmptyChange.cpp
[build] [22/36  25% :: 6.915] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/Chord.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/Chord.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/Chord.cpp.o -c /home/brandon/Justly/src/Chord.cpp
[build] [23/36  27% :: 7.317] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/ChordsView.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/ChordsView.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/ChordsView.cpp.o -c /home/brandon/Justly/src/ChordsView.cpp
[build] [24/36  30% :: 7.436] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/InstrumentEditor.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/InstrumentEditor.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/InstrumentEditor.cpp.o -c /home/brandon/Justly/src/InstrumentEditor.cpp
[build] [25/36  33% :: 7.461] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/Interval.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/Interval.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/Interval.cpp.o -c /home/brandon/Justly/src/Interval.cpp
[build] [25/36  36% :: 7.734] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/IntervalEditor.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/IntervalEditor.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/IntervalEditor.cpp.o -c /home/brandon/Justly/src/IntervalEditor.cpp
[build] [25/36  38% :: 9.264] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/ChordsDelegate.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/ChordsDelegate.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/ChordsDelegate.cpp.o -c /home/brandon/Justly/src/ChordsDelegate.cpp
[build] [25/36  41% :: 9.682] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/InsertRemoveChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/InsertRemoveChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/InsertRemoveChange.cpp.o -c /home/brandon/Justly/src/InsertRemoveChange.cpp
[build] [25/36  44% :: 11.075] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/StartingKeyChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/StartingKeyChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/StartingKeyChange.cpp.o -c /home/brandon/Justly/src/StartingKeyChange.cpp
[build] [25/36  47% :: 11.668] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/JsonErrorHandler.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/JsonErrorHandler.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/JsonErrorHandler.cpp.o -c /home/brandon/Justly/src/JsonErrorHandler.cpp
[build] [25/36  50% :: 12.054] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/NoteChord.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/NoteChord.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/NoteChord.cpp.o -c /home/brandon/Justly/src/NoteChord.cpp
[build] [25/36  52% :: 12.246] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/StartingVolumeChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/StartingVolumeChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/StartingVolumeChange.cpp.o -c /home/brandon/Justly/src/StartingVolumeChange.cpp
[build] [25/36  55% :: 12.281] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/schemas.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/schemas.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/schemas.cpp.o -c /home/brandon/Justly/src/schemas.cpp
[build] [25/36  58% :: 12.409] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/ChordsModel.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/ChordsModel.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/ChordsModel.cpp.o -c /home/brandon/Justly/src/ChordsModel.cpp
[build] [25/36  61% :: 12.537] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/Song.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/Song.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/Song.cpp.o -c /home/brandon/Justly/src/Song.cpp
[build] [25/36  63% :: 12.603] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/StartingTempoChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/StartingTempoChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/StartingTempoChange.cpp.o -c /home/brandon/Justly/src/StartingTempoChange.cpp
[build] [25/36  66% :: 12.619] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/StartingInstrumentChange.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/StartingInstrumentChange.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/StartingInstrumentChange.cpp.o -c /home/brandon/Justly/src/StartingInstrumentChange.cpp
[build] [25/36  69% :: 15.446] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DJustlyLibrary_EXPORTS -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -DSOUNDFONT_RELATIVE_PATH=\"../share/MuseScore_General.sf2\" -I/home/brandon/Justly/build/JustlyLibrary_autogen/include -I/home/brandon/Justly/include -I/home/brandon/Justly -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -fPIC -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyLibrary.dir/src/SongEditor.cpp.o -MF CMakeFiles/JustlyLibrary.dir/src/SongEditor.cpp.o.d -o CMakeFiles/JustlyLibrary.dir/src/SongEditor.cpp.o -c /home/brandon/Justly/src/SongEditor.cpp
[build] [26/36  72% :: 15.827] : && /usr/bin/clang++-15 -fPIC -g   -shared -Wl,-soname,libJustlyLibrary.so -o libJustlyLibrary.so CMakeFiles/JustlyLibrary.dir/JustlyLibrary_autogen/mocs_compilation.cpp.o CMakeFiles/JustlyLibrary.dir/src/CellChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/Chord.cpp.o CMakeFiles/JustlyLibrary.dir/src/ChordsDelegate.cpp.o CMakeFiles/JustlyLibrary.dir/src/ChordsModel.cpp.o CMakeFiles/JustlyLibrary.dir/src/ChordsView.cpp.o CMakeFiles/JustlyLibrary.dir/src/InsertEmptyChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/InsertRemoveChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/Instrument.cpp.o CMakeFiles/JustlyLibrary.dir/src/instruments.cpp.o CMakeFiles/JustlyLibrary.dir/src/InstrumentEditor.cpp.o CMakeFiles/JustlyLibrary.dir/src/InstrumentsModel.cpp.o CMakeFiles/JustlyLibrary.dir/src/Interval.cpp.o CMakeFiles/JustlyLibrary.dir/src/IntervalEditor.cpp.o CMakeFiles/JustlyLibrary.dir/src/JsonErrorHandler.cpp.o CMakeFiles/JustlyLibrary.dir/src/Note.cpp.o CMakeFiles/JustlyLibrary.dir/src/NoteChord.cpp.o CMakeFiles/JustlyLibrary.dir/src/schemas.cpp.o CMakeFiles/JustlyLibrary.dir/src/Song.cpp.o CMakeFiles/JustlyLibrary.dir/src/SongEditor.cpp.o CMakeFiles/JustlyLibrary.dir/src/StartingTempoChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/StartingVolumeChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/StartingKeyChange.cpp.o CMakeFiles/JustlyLibrary.dir/src/StartingInstrumentChange.cpp.o  -Wl,-rpath,::::::::::::::::::::::  /usr/lib/x86_64-linux-gnu/libQt6Widgets.so.6.4.2  vcpkg_installed/x64-linux/debug/lib/libnlohmann_json_schema_validator.a  /usr/lib/x86_64-linux-gnu/libQt6Gui.so.6.4.2  /usr/lib/x86_64-linux-gnu/libQt6Core.so.6.4.2  /usr/lib/x86_64-linux-gnu/libGLX.so  /usr/lib/x86_64-linux-gnu/libOpenGL.so && :
[build] [28/36  75% :: 15.867] cd /home/brandon/Justly/build && /usr/bin/cmake -E cmake_autogen /home/brandon/Justly/build/CMakeFiles/Justly_autogen.dir/AutogenInfo.json Debug && /usr/bin/cmake -E touch /home/brandon/Justly/build/Justly_autogen/timestamp && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/brandon/Justly /home/brandon/Justly /home/brandon/Justly/build /home/brandon/Justly/build /home/brandon/Justly/build/Justly_autogen/deps /home/brandon/Justly/build/CMakeFiles/d/afbac9126d33c2fd33fcd8c87010f391acdab10d1826ee7a5eb129eb72c0457b.d
[build] [30/36  77% :: 15.894] /usr/bin/clang++-15 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -I/home/brandon/Justly/build/Justly_autogen/include -I/home/brandon/Justly/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -Wall -Wextra -fPIC -MD -MT CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o -MF CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o -c /home/brandon/Justly/build/Justly_autogen/mocs_compilation.cpp
[build] [30/36  80% :: 16.085] cd /home/brandon/Justly/build && /usr/bin/cmake -E cmake_autogen /home/brandon/Justly/build/CMakeFiles/JustlyTests_autogen.dir/AutogenInfo.json Debug && /usr/bin/cmake -E touch /home/brandon/Justly/build/JustlyTests_autogen/timestamp && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/brandon/Justly /home/brandon/Justly /home/brandon/Justly/build /home/brandon/Justly/build /home/brandon/Justly/build/JustlyTests_autogen/deps /home/brandon/Justly/build/CMakeFiles/d/b4b64b76351a1e9a161c543db395ade2126dac372df69b6d464238853d02ef2a.d
[build] [33/36  83% :: 17.496] /usr/bin/clang++-15 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_TESTCASE_BUILDDIR=\"/home/brandon/Justly/build\" -DQT_TESTCASE_SOURCEDIR=\"/home/brandon/Justly\" -DQT_TESTLIB_LIB -DQT_WIDGETS_LIB -I/home/brandon/Justly/build/JustlyTests_autogen/include -I/home/brandon/Justly -I/home/brandon/Justly/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -isystem /usr/include/x86_64-linux-gnu/qt6/QtTest -g -std=gnu++17 -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyTests.dir/JustlyTests_autogen/mocs_compilation.cpp.o -MF CMakeFiles/JustlyTests.dir/JustlyTests_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/JustlyTests.dir/JustlyTests_autogen/mocs_compilation.cpp.o -c /home/brandon/Justly/build/JustlyTests_autogen/mocs_compilation.cpp
[build] [33/36  86% :: 18.634] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WIDGETS_LIB -I/home/brandon/Justly/build/Justly_autogen/include -I/home/brandon/Justly/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -g -std=gnu++17 -Wall -Wextra -fPIC -MD -MT CMakeFiles/Justly.dir/src/main.cpp.o -MF CMakeFiles/Justly.dir/src/main.cpp.o.d -o CMakeFiles/Justly.dir/src/main.cpp.o -c /home/brandon/Justly/src/main.cpp
[build] [34/36  88% :: 19.041] : && /usr/bin/clang++-15 -g  CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o CMakeFiles/Justly.dir/src/main.cpp.o -o Justly -L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib -Wl,-rpath,"\$ORIGIN/vcpkg_installed/x64-linux/debug/lib:\$ORIGIN:"  libJustlyLibrary.so  /usr/lib/x86_64-linux-gnu/libQt6Widgets.so.6.4.2  vcpkg_installed/x64-linux/debug/lib/libfluidsynth.a  /usr/lib/x86_64-linux-gnu/libQt6Gui.so.6.4.2  /usr/lib/x86_64-linux-gnu/libQt6Core.so.6.4.2  /usr/lib/x86_64-linux-gnu/libGLX.so  /usr/lib/x86_64-linux-gnu/libOpenGL.so  vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a  vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a  vcpkg_installed/x64-linux/debug/lib/libsndfile.a  vcpkg_installed/x64-linux/debug/lib/libvorbisenc.a  vcpkg_installed/x64-linux/debug/lib/libvorbis.a  vcpkg_installed/x64-linux/debug/lib/libFLAC.a  vcpkg_installed/x64-linux/debug/lib/libogg.a  vcpkg_installed/x64-linux/debug/lib/libopus.a  vcpkg_installed/x64-linux/debug/lib/libmpg123.a  vcpkg_installed/x64-linux/debug/lib/libmp3lame.a  vcpkg_installed/x64-linux/debug/lib/libasound.a  -ldl  -lrt  vcpkg_installed/x64-linux/debug/lib/libgmodule-2.0.a  -lglib-2.0  -lm  -lpcre2-8  -lffi && :
[build] FAILED: Justly 
[build] : && /usr/bin/clang++-15 -g  CMakeFiles/Justly.dir/Justly_autogen/mocs_compilation.cpp.o CMakeFiles/Justly.dir/src/main.cpp.o -o Justly -L/home/brandon/Justly/build/vcpkg_installed/x64-linux/debug/lib/pkgconfig/../../lib -Wl,-rpath,"\$ORIGIN/vcpkg_installed/x64-linux/debug/lib:\$ORIGIN:"  libJustlyLibrary.so  /usr/lib/x86_64-linux-gnu/libQt6Widgets.so.6.4.2  vcpkg_installed/x64-linux/debug/lib/libfluidsynth.a  /usr/lib/x86_64-linux-gnu/libQt6Gui.so.6.4.2  /usr/lib/x86_64-linux-gnu/libQt6Core.so.6.4.2  /usr/lib/x86_64-linux-gnu/libGLX.so  /usr/lib/x86_64-linux-gnu/libOpenGL.so  vcpkg_installed/x64-linux/debug/lib/libglib-2.0.a  vcpkg_installed/x64-linux/debug/lib/libgthread-2.0.a  vcpkg_installed/x64-linux/debug/lib/libsndfile.a  vcpkg_installed/x64-linux/debug/lib/libvorbisenc.a  vcpkg_installed/x64-linux/debug/lib/libvorbis.a  vcpkg_installed/x64-linux/debug/lib/libFLAC.a  vcpkg_installed/x64-linux/debug/lib/libogg.a  vcpkg_installed/x64-linux/debug/lib/libopus.a  vcpkg_installed/x64-linux/debug/lib/libmpg123.a  vcpkg_installed/x64-linux/debug/lib/libmp3lame.a  vcpkg_installed/x64-linux/debug/lib/libasound.a  -ldl  -lrt  vcpkg_installed/x64-linux/debug/lib/libgmodule-2.0.a  -lglib-2.0  -lm  -lpcre2-8  -lffi && :
[build] /usr/bin/ld: Justly: hidden symbol `fluid_sequencer_register_fluidsynth' in vcpkg_installed/x64-linux/debug/lib/libfluidsynth.a(fluid_seqbind.c.o) is referenced by DSO
[build] /usr/bin/ld: final link failed: bad value
[build] clang: error: linker command failed with exit code 1 (use -v to see invocation)
[build] [34/36  91% :: 21.467] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_TESTCASE_BUILDDIR=\"/home/brandon/Justly/build\" -DQT_TESTCASE_SOURCEDIR=\"/home/brandon/Justly\" -DQT_TESTLIB_LIB -DQT_WIDGETS_LIB -I/home/brandon/Justly/build/JustlyTests_autogen/include -I/home/brandon/Justly -I/home/brandon/Justly/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -isystem /usr/include/x86_64-linux-gnu/qt6/QtTest -g -std=gnu++17 -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyTests.dir/tests/Tester.cpp.o -MF CMakeFiles/JustlyTests.dir/tests/Tester.cpp.o.d -o CMakeFiles/JustlyTests.dir/tests/Tester.cpp.o -c /home/brandon/Justly/tests/Tester.cpp
[build] [34/36  94% :: 21.491] /usr/bin/cmake -E __run_co_compile --iwyu="/usr/bin/include-what-you-use;-Xiwyu;--mapping_file=/home/brandon/Justly/map.imp;--driver-mode=g++" -- /usr/bin/clang++-15 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_TESTCASE_BUILDDIR=\"/home/brandon/Justly/build\" -DQT_TESTCASE_SOURCEDIR=\"/home/brandon/Justly\" -DQT_TESTLIB_LIB -DQT_WIDGETS_LIB -I/home/brandon/Justly/build/JustlyTests_autogen/include -I/home/brandon/Justly -I/home/brandon/Justly/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /home/brandon/Justly/build/vcpkg_installed/x64-linux/include -isystem /usr/include/x86_64-linux-gnu/qt6/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt6/QtGui -isystem /usr/include/x86_64-linux-gnu/qt6/QtTest -g -std=gnu++17 -Wall -Wextra -fPIC -MD -MT CMakeFiles/JustlyTests.dir/tests/test.cpp.o -MF CMakeFiles/JustlyTests.dir/tests/test.cpp.o.d -o CMakeFiles/JustlyTests.dir/tests/test.cpp.o -c /home/brandon/Justly/tests/test.cpp
[build] ninja: build stopped: subcommand failed.
[build] 
[proc] The command: /usr/bin/cmake --build /home/brandon/Justly/build --config Debug --target all -- exited with code: 1
[driver] Build completed: 00:00:21.516
[build] Build finished with exit code 1
bramtayl commented 2 weeks ago

Nevermind, figured it out, was an issue on my end