diff --git a/test/core/CMakeLists.txt b/test/core/CMakeLists.txt index eace0aba..13477a97 100644 --- a/test/core/CMakeLists.txt +++ b/test/core/CMakeLists.txt @@ -1,3 +1,7 @@ +glmCreateTestGTC(core_force_aligned_gentypes) +glmCreateTestGTC(core_force_ctor_init) +glmCreateTestGTC(core_force_explicit_ctor) +glmCreateTestGTC(core_force_inline) glmCreateTestGTC(core_force_pure) glmCreateTestGTC(core_force_unrestricted_gentype) glmCreateTestGTC(core_type_aligned) diff --git a/test/core/core_force_aligned_gentypes.cpp b/test/core/core_force_aligned_gentypes.cpp new file mode 100644 index 00000000..068d7efa --- /dev/null +++ b/test/core/core_force_aligned_gentypes.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_ALIGNED_GENTYPES + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_ctor_init.cpp b/test/core/core_force_ctor_init.cpp new file mode 100644 index 00000000..ec47c730 --- /dev/null +++ b/test/core/core_force_ctor_init.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_CTOR_INIT + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_explicit_ctor.cpp b/test/core/core_force_explicit_ctor.cpp new file mode 100644 index 00000000..cec2fe98 --- /dev/null +++ b/test/core/core_force_explicit_ctor.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_EXPLICIT_CTOR + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_inline.cpp b/test/core/core_force_inline.cpp new file mode 100644 index 00000000..cd23fd98 --- /dev/null +++ b/test/core/core_force_inline.cpp @@ -0,0 +1,12 @@ +#define GLM_FORCE_INLINE + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +} + diff --git a/test/core/core_force_unrestricted_gentype.cpp b/test/core/core_force_unrestricted_gentype.cpp index f198fa33..21d6e520 100644 --- a/test/core/core_force_unrestricted_gentype.cpp +++ b/test/core/core_force_unrestricted_gentype.cpp @@ -1,7 +1,7 @@ #define GLM_FORCE_UNRESTRICTED_GENTYPE -#define GLM_FORCE_SWIZZLE #include +#include int main() {