Elimination of compilation errors with Cmake.

This commit is contained in:
plyatov 2007-11-07 20:01:25 +00:00
parent 35059b659f
commit ff567328ed
1 changed files with 7 additions and 7 deletions

View File

@ -14,27 +14,27 @@
// Import: // Import:
extern wxString g_Main_Title; extern wxString g_Main_Title;
wxString MsgInfos( wxString MsgInfos;
#ifdef GERBVIEW #ifdef GERBVIEW
wxT("** GERBVIEW (jul 2001 .. 2007) **") MsgInfos = wxT("** GERBVIEW (jul 2001 .. 2007) **");
#else #else
#ifdef PCBNEW #ifdef PCBNEW
wxT("** PCBNEW (sept 1992 .. 2007) **") MsgInfos = wxT("** PCBNEW (sept 1992 .. 2007) **");
#endif #endif
#endif #endif
#ifdef CVPCB #ifdef CVPCB
wxT("** CVPCB (sept 1992 .. 2007) **") MsgInfos = wxT("** CVPCB (sept 1992 .. 2007) **")
#endif #endif
#ifdef KICAD #ifdef KICAD
wxT("** KICAD (jul 2000 .. 2007) **") MsgInfos = wxT("** KICAD (jul 2000 .. 2007) **")
#endif #endif
#ifdef EESCHEMA #ifdef EESCHEMA
wxT("** EESCHEMA (sept 1994 .. 2007) **") MsgInfos = wxT("** EESCHEMA (sept 1994 .. 2007) **")
#endif #endif
);
// Routines Locales // Routines Locales