From 01ba8b39310e2f5ac1a3430e238e09dcde65cbb6 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 21 Mar 2003 16:22:40 +0000 Subject: [PATCH] Add code to handle Cocoa, CocoaH, and CocoaR git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/msw/tmake/filelist.t | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/distrib/msw/tmake/filelist.t b/distrib/msw/tmake/filelist.t index b8897313fe..63abfc7ee9 100644 --- a/distrib/msw/tmake/filelist.t +++ b/distrib/msw/tmake/filelist.t @@ -83,6 +83,8 @@ $wxMSW{$filename} = $fileflags; } elsif ( $filetype eq "Mac" ) { $wxMAC{$filename} = $fileflags; + } elsif ( $filetype eq "Cocoa" ) { + $wxCOCOA{$filename} = $fileflags; } elsif ( $filetype eq "Motif" ) { $wxMOTIF{$filename} = $fileflags; } elsif ( $filetype eq "GTK" ) { @@ -111,6 +113,8 @@ $wxHTMLINCLUDE{$filename} = $fileflags; } elsif ( $filetype eq "MacH" ) { $wxMACINCLUDE{$filename} = $fileflags; + } elsif ( $filetype eq "CocoaH" ) { + $wxCOCOAINCLUDE{$filename} = $fileflags; } elsif ( $filetype eq "MotifH" ) { $wxMOTIFINCLUDE{$filename} = $fileflags; } elsif ( $filetype eq "MSWH" && $fileflags =~ m/O/ ) { @@ -133,6 +137,8 @@ $wxGENERICINCLUDE{$filename} = $fileflags; } elsif ( $filetype eq "MacR" ) { $wxMACRESOURCE{$filename} = $fileflags; + } elsif ( $filetype eq "CocoaR" ) { + $wxCOCOARESOURCE{$filename} = $fileflags; } else { warn "Unknown file type $filetype for $filename, ignoring.\n"; next line;