Adds new feature flags for libFGL

This commit is contained in:
2025-07-16 02:03:48 -04:00
parent d70a0f7bad
commit 1ce9f47c59

16
include/fgl/features.hpp Normal file
View File

@@ -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