mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 08:41:55 +00:00
add missing file for windows
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -41,7 +41,7 @@ packages/
|
||||
.anjuta/*
|
||||
*.anjuta*
|
||||
config.h.*
|
||||
config.h
|
||||
/config.h
|
||||
stamp*
|
||||
COPYING
|
||||
.idea/*
|
||||
|
22
src/config.h
Normal file
22
src/config.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright (c), Recep Aslantas.
|
||||
*
|
||||
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||||
* Full license can be found in the LICENSE file
|
||||
*/
|
||||
|
||||
#ifndef cglm__config__h_
|
||||
#define cglm__config__h_
|
||||
|
||||
#if defined(_WIN32) || defined(WIN32)
|
||||
|
||||
/* Exclude rarely-used stuff from Windows headers */
|
||||
# define WIN32_LEAN_AND_MEAN
|
||||
# include <SDKDDKVer.h>
|
||||
|
||||
/* Windows Header Files: */
|
||||
# include <windows.h>
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* cglm__config__h_ */
|
Reference in New Issue
Block a user