mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2025-06-07 15:15:04 +02:00
Enumerating devices constantly caused some sort of error/crash that would stop the monitor after just one frame or so.
23 lines
850 B
C
23 lines
850 B
C
//---------------------------------------------------------------------------//
|
|
// ==>/[_]\ fxlink: A community communication tool for CASIO calculators. //
|
|
// |:::| Made by Lephe' as part of the fxSDK. //
|
|
// \___/ License: MIT <https://opensource.org/licenses/MIT> //
|
|
//---------------------------------------------------------------------------//
|
|
// fxlink.config: Compile-time configuration
|
|
|
|
#pragma once
|
|
|
|
/* Disables UDisks2 interfaces for systems that don't use it. */
|
|
#cmakedefine FXLINK_DISABLE_UDISKS2
|
|
|
|
/* Disable SDL2 interfaces. */
|
|
#cmakedefine FXLINK_DISABLE_SDL2
|
|
|
|
/* Disable poll-based interfaces. */
|
|
#cmakedefine FXLINK_DISABLE_POLL
|
|
|
|
/* Disable printing ANSI escape sequences. */
|
|
#cmakedefine FXLINK_DISABLE_ANSIESC
|
|
|
|
/* fxSDK version */
|
|
#define FXLINK_VERSION "@CMAKE_PROJECT_VERSION@"
|