leocad/common/lc_global.h

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_