Added lexer tests
This commit is contained in:
12
Common/modules/OS.h
Normal file
12
Common/modules/OS.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
// Platform specific includes //
|
||||
#if defined(_WIN32)
|
||||
#define NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <Windows.h>
|
||||
#elif defined(__unix__)
|
||||
// No platform specific includes are needed for UNIX based systems //
|
||||
#else
|
||||
#error "OS is not supported"
|
||||
#endif
|
||||
Reference in New Issue
Block a user