2023-03-03 00:29:00 +01:00
|
|
|
//---------------------------------------------------------------------------//
|
|
|
|
// ==>/[_]\ 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
|
|
|
|
|
2024-08-25 23:10:51 +02:00
|
|
|
/* Disable poll-based interfaces. */
|
|
|
|
#cmakedefine FXLINK_DISABLE_POLL
|
|
|
|
|
2023-03-03 00:29:00 +01:00
|
|
|
/* fxSDK version */
|
|
|
|
#define FXLINK_VERSION "@CMAKE_PROJECT_VERSION@"
|