progress on resolving deps

This commit is contained in:
ed
2025-02-01 16:05:53 -05:00
parent 9459ae066a
commit e30f65a86b
17 changed files with 178 additions and 53 deletions
+13
View File
@@ -0,0 +1,13 @@
#if MD_INTELLISENSE_DIRECTIVES
#pragma once
#endif
#if defined( _WIN64 ) || defined( __x86_64__ ) || defined( _M_X64 ) || defined( __64BIT__ ) || defined( __powerpc64__ ) || defined( __ppc64__ ) || defined( __aarch64__ )
# ifndef MD_ARCH_64_BIT
# define MD_ARCH_64_BIT 1
# endif
#else
# ifndef MD_ARCH_32_BIT
# define MD_ARCH_32_BIT 1
# endif
#endif