Files
t3dsr/tests/tests_config.c

16 lines
289 B
C

#include "../src/math/mat4.h"
#include <stdio.h>
void config() {
#if defined (SIMD_X86)
printf("SIMD enabled: X86\n");
#elif defined (SIMD_ARCH)
printf("SIMD enabled: ARCH\n");
#else
printf("SIMD disabled\n");
#endif
}
int main() {
config();
}