You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue tracker is ONLY used for reporting bugs. Please use our discord for support and/or feature requests.
When pulling latest of and building the application on Ubuntu 22.04 using the cmake .. -DENABLE_HEADLESS=ON flag an error is hit when building:
In file included from /home/kyle/Storage/Projects/MeleeSetup/tmp/Ishiiruka/Source/Core/Core/HW/EXI_DeviceSlippi.cpp:41:
/home/kyle/Storage/Projects/MeleeSetup/tmp/Ishiiruka/Source/Core/DolphinWX/Frame.h:11:10: fatal error: wx/bitmap.h: No such file or directory
11 |#include <wx/bitmap.h>
Expected Behavior
The build should pass and generate a headless dolphin executable.
Current Behavior
The error above is raised. This is because wxWidgets_LIBRARIES has been disabled with the -DENABLE_HEADLESS=ON flag set and DolphinWX/CMakeLists.txt doesn't have any headers to work with.
In file included from /opt/projects/slippi-Ishiiruka/Source/Core/Core/HW/EXI_DeviceSlippi.cpp:41:
/opt/projects/slippi-Ishiiruka/Source/Core/DolphinWX/Frame.h:11:10: fatal error: wx/bitmap.h: No such file or directory
11 | #include <wx/bitmap.h>
| ^~~~~~~~~~~~~
compilation terminated.
In file included from /opt/projects/slippi-Ishiiruka/Source/Core/Core/HW/EXI_DeviceSlippi.cpp:41:
/opt/projects/slippi-Ishiiruka/Source/Core/DolphinWX/Frame.h:11:10: fatal error: wx/bitmap.h: No such file or directory
11 | #include <wx/bitmap.h>
| ^~~~~~~~~~~~~
compilation terminated.
Issue tracker is ONLY used for reporting bugs. Please use our discord for support and/or feature requests.
When pulling latest of and building the application on Ubuntu 22.04 using the
cmake .. -DENABLE_HEADLESS=ON
flag an error is hit when building:Expected Behavior
The build should pass and generate a headless dolphin executable.
Current Behavior
The error above is raised. This is because wxWidgets_LIBRARIES has been disabled with the
-DENABLE_HEADLESS=ON
flag set and DolphinWX/CMakeLists.txt doesn't have any headers to work with.Steps to Reproduce
git clone --recursive https://github.com/project-slippi/Ishiiruka.git
mkdir build
cmake .. -DENABLE_HEADLESS=ON && make -j1
Environment
output.txt
The text was updated successfully, but these errors were encountered: