mirror of
https://github.com/leozide/leocad
synced 2024-12-28 22:23:35 +01:00
17 lines
306 B
C
17 lines
306 B
C
#ifndef _LC_GLOBAL_H_
|
|
#define _LC_GLOBAL_H_
|
|
|
|
#include "config.h"
|
|
#include "defines.h"
|
|
|
|
// Check for supported platforms.
|
|
#if !defined(LC_WINDOWS) && !defined(LC_LINUX)
|
|
#error No OS defined.
|
|
#endif
|
|
|
|
// Precompiled headers.
|
|
#if LC_WINDOWS
|
|
#include "stdafx.h"
|
|
#endif
|
|
|
|
#endif // _LC_GLOBAL_H_
|