dbbc525174
* Build refactoring and initial plugin support * Possibly fixed linux / mac build * Added libdl to libglad build script * Add glfw to imgui dependencies * Refactored common functionality into "libimhex" for plugins * Added plugin loading and example plugin * Added proper API for creating a custom view and a custom tools entry with plugins
17 lines
399 B
Bash
Executable File
17 lines
399 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
pacman -S --needed \
|
|
mingw-w64-x86_64-gcc \
|
|
mingw-w64-x86_64-cmake \
|
|
mingw-w64-x86_64-make \
|
|
mingw-w64-x86_64-capstone \
|
|
mingw-w64-x86_64-glfw \
|
|
mingw-w64-x86_64-glm \
|
|
mingw-w64-x86_64-file \
|
|
mingw-w64-x86_64-nlohmann-json \
|
|
mingw-w64-x86_64-openssl \
|
|
mingw-w64-x86_64-polly \
|
|
mingw-w64-x86_64-python \
|
|
mingw-w64-x86_64-freetype \
|
|
mingw-w64-x86_64-dlfcn
|