fix: make entrypoint work on windows

This commit is contained in:
2025-10-17 12:34:33 +02:00
parent a32222f22f
commit 3f18601ffc
2 changed files with 7 additions and 5 deletions

View File

@ -1,10 +1,12 @@
#ifndef WIN32
#pragma once
#ifndef _WIN32
#define GLEW_STATIC
#endif
#include <memory>
#ifdef WIN32
#ifdef _WIN32
#include <corecrt_math_defines.h>
#endif