aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)Author
2025-03-29Added support for LLE OPL2 and OPL3 emulatorsWohlstand
Kept disabled by default because they are extremely heavy for ordinary processors.
2025-03-29Refactored DOS supportWohlstand
2025-03-26CMake: Enable stricter debug of STL containersWohlstand
2025-03-26CMake: Added support for Address SanitizerWohlstand
To debug possible memory damages
2025-03-25Added MAME OPL2 emulatorWohlstand
2025-03-25Implemented support of YMFM emulators and OPL2Wohlstand
2025-03-24Added experimental support of ESFMu emulatorWohlstand
Not yet working properly
2024-12-30CMake: Fixed warning at new CMake versinosWohlstand
2024-05-23MidiPlay: Fixed build on macOSWohlstand
2024-05-11Initial implementation of Serial supportWohlstand
+ refactor of the MIDI play, making separated loop functions instead the mess of everything in one single loop function.
2023-08-07CMake: Added range of minimal versionsWohlstand
2023-07-24CMake: use GNU90 standardWohlstand
2023-05-26Opal: Convert entire Opal code into the Pure CWohlstand
2023-05-17CMake: Fixed build with disabled embedded banksWohlstand
2023-05-17gen_adldata: Support for custom banks.ini filesWohlstand
Add an ability to specify a custom list of banks during the build process Instead of using a pre-built cache, the new banks list will be generated on the fly. @mmontag, I didn't forgot about you, and I hope, you could make your own "banks.ini" somewhere outside, and build the the thing with it.
2023-05-16CMake: Added -NDEBUG macro when Release build isWohlstand
2023-05-16CMake: Remove the auto-"Release"Wohlstand
This makes a pain to package managers who needs to specify an own set of optimisations using CMAKE_BUILD_TYPE=None way.
2023-05-16CMake: Apply some fixes for Devkit Pro related buildsWohlstand
2023-03-07CMake: proper configDenis Barkar
2023-02-23CMake: added package export, fixed includesDenis Barkar
2023-02-23CMake: respect BUILD_SHARED_LIBS settingDenis Barkar
2022-12-23OuchWohlstand
2022-12-23Misc: Added WUT mutex supportWohlstand
2022-10-17CMake: forgot to list the "include" directoryWohlstand
2022-10-17CMake: Make IDEs see headersWohlstand
2022-09-26CMake: tweaked some of platform specific macrosWohlstand
2022-03-11Use LWP_Mutex API from libOGC where neededWohlstand
2022-03-08Disable mutex usage at some platformsWohlstand
2021-08-25Add 3DS into the FPIC conditionWohlstand
2021-07-18Synchronize the MIDI Sequencer with mainstreamWohlstand
2021-07-17Build: Don't build shared library where impossibleWohlstand
At several platforms the shared library is an impossible thing
2021-07-17Build: Tune the Vita compatibilityWohlstand
2021-01-24Added an ability to disable auto-arpeggioWohlstand
Backported from libOPNMIDI
2020-09-22Update readmeWohlstand
2020-09-21Added WinMM driver for windows (#236)Vitaly Novichkov
* ADLMIDI2: Fixed an MSVC build However, it may work glitchy! * Experimental WinMM MIDI driver TODO: Make a control panel to configure the driver * WinMM-DRV: A workaround for older MinGW * WinMM-DRV: WIP control panel appled / tool * WinMM-DRV: Better test a driver's work * WinMM-DRV: More progress on a control panel * WinMM-DRV: And more progress on this control panel It's almost completed, I need to make the working setup through a registry. * WinMM-DRV: Driver is almost ready However, control panel can't ping a driver to reload settings yet * WinMM-DRV: Fix the missing volume model setup * WinMM-DRV: Setup reload on the fly now work! * WinMM-DRV: Stabilize the thing * WinMM-DRV: Stabilizing * WinMM-DRV: Avoid all "setup" in names to avoid a stupid PCA thing: https://stackoverflow.com/questions/17660404/how-to-programmatically-disable-program-compatibility-assistant-in-windows-7-and * A small warning fix at the WOPL module * WinMM-DRV: Fixed some warnings * WinMM-DRV: Avoid PCA dialog on the installer * WiNMM-DRV: Make the linking of pthread being optional Required to use MinGW-w64 toolchain with the "win32" threading mode * WinMM-DRV: Receive the MODM_RESET to reset the MIDI state * WinMM-DRV: Attempt to fix a sound distorsion on song song * WinMM-Drv: Fixed a build on some older MinGW toolchains * WinMM-Drv: Fixed default settings not being loaded
2020-09-13Rename "adldata.cpp" into "inst_db.cpp"Wohlstand
2020-09-13Version 1.5Wohlstand
2020-08-31Remove C++ extrasWohlstand
All C++ binded features are useless since C-binded real-time MIDI API can completely replace them at all. This was a workaround for ADLMIDI2 tool.
2020-08-19Use new banks database formatWohlstand
However, it's stil need to clean-up and fix gen_adldata for a correct work!
2020-08-16Merge branch 'master' into wip-new-embedded-banksWohlstand
2020-08-16Tuned the work on hardware OPL3 chipWohlstand
#230
2020-02-22Merge branch 'master' into wip-new-embedded-banksWohlstand
2020-01-28Added MUS2MID conversion toolWohlstand
2019-12-06CMake: Added docks installingWohlstand
2019-12-04Merge branch 'master' into wip-new-embedded-banksWohlstand
2019-12-04CMake: Don't give "-static" suffix on non-Windows platformsWohlstand
2019-12-04CMake: Allow overriding of output pathsWohlstand
2019-12-04Merge branch 'master' into wip-new-embedded-banksWohlstand
2019-12-04CMake: Added SO versionWohlstand
2019-09-23MidiPlay: Move Audio Output into separate moduleWohlstand