On Tue, 25 Jan 2011, Frank Church wrote:
When I compile a Windows app in Linux, I get this message
systemDM.lpr(2,2) Warning: APPTYPE is not supported by the target OS
What does it mean?
It means that on Linux, there is no difference between graphical and console
applications. The setting has therefor no meaning, and the compiler warns
about this. You can avoid this warning by enclosing it in an ifdef:
{$ifdef windows}
{$APPTYPE whatever}
{$endif}
Michael.
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus