-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccm.inc
30 lines (28 loc) · 1.6 KB
/
ccm.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(******************************************************************************)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* This file is part of CCM *)
(* *)
(* See the file license.md, located under: *)
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
(* for details about the license. *)
(* *)
(* It is not allowed to change or remove this text from any *)
(* source file of the project. *)
(* *)
(******************************************************************************)
(*
* Include File zur Steuerung Projectweiter Configurationen
* dieses Includefile muss bei jeder Verwendeten .pas Datei
* eingebunden sein.
*)
{$IFDEF Linux}
{$DEFINE NoShowModal} // Auf dem Odroid unter LXDE machen Modale Fenster Probleme.
{$ENDIF}
(*
* Ist dieses Flag gesetzt, wird das mehrfache Invalidate nicht gesetzt.
* Bei Raspbian scheint das nicht nötig, sogar eher Problematisch.
* Auf Windows ist es notwendig.
*)
{.$DEFINE DoNotInvalidateOpenGLWindow}