diff --git a/include/fgl/features.hpp b/include/fgl/features.hpp new file mode 100644 index 0000000..7c11710 --- /dev/null +++ b/include/fgl/features.hpp @@ -0,0 +1,16 @@ +// +// Created by kj16609 on 7/16/25. +// +#pragma once + +#ifdef __cpp_pp_embed +#if __cpp_pp_embed >= 202502L +#define FGL_HAS_EMBED 1 +#else +#define FGL_HAS_EMBED 0 +#endif +#endif + +#ifndef FGL_HAS_EMBED +#define FGL_HAS_EMBED 0 +#endif