]> git.saurik.com Git - wxWidgets.git/commitdiff
Add code to handle Cocoa, CocoaH, and CocoaR
authorDavid Elliott <dfe@tgwbd.org>
Fri, 21 Mar 2003 16:22:40 +0000 (16:22 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Fri, 21 Mar 2003 16:22:40 +0000 (16:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/msw/tmake/filelist.t

index b8897313fe6b66f010590cab85e3aeda0555a829..63abfc7ee971fc90de476ee6ad46c39a481d860f 100644 (file)
@@ -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" ) {
             $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/ ) {
             $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;