Files
cglm/test/src/test_project.c
2019-09-22 10:52:02 +03:00

27 lines
430 B
C

/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
/* test inline project */
#define GLM_PREFIX glm_
#define GLM(X) (glm_ ## X)
#include "test_project.h"
#undef GLM
#undef GLM_PREFIX
/* test pre-compiled project */
#define GLM_PREFIX glmc_
#define GLM(X) (glmc_ ## X)
#include "test_project.h"
#undef GLM
#undef GLM_PREFIX