annotate src/video/bwindow/Makefile.am @ 683:5d2f027b3349
Date: Sat, 9 Aug 2003 20:14:06 -0400
From: Darrell Walisser
Subject: Re: Updated projects?
>> Did you get a chance to look at my "Custom Cocoa" demo? I have a few
>> minor patches that enable SDL/Cocoa integration, and a project
>> template.
>
> I didn't yet, but go ahead and send me the patches. :)
>
I updated the patch for current CVS. There are a lot of changes, but I
don't think I've broken anything. This patch also improves the behavior
of window minimize/deminimize.
author |
Sam Lantinga <slouken@libsdl.org> |
date |
Sun, 10 Aug 2003 07:21:43 +0000 |
parents |
74212992fb08 |
children |
10332c6fad2e |
rev |
line source |
0
|
1
|
|
2 ## Makefile.am for SDL using the BeOS BWindow video driver
|
|
3
|
|
4 noinst_LTLIBRARIES = libvideo_bwindow.la
|
|
5 libvideo_bwindow_la_SOURCES = $(BWINDOW_SRCS)
|
|
6
|
|
7 # The SDL BWindow video driver sources
|
|
8 BWINDOW_SRCS = \
|
|
9 SDL_BView.h \
|
|
10 SDL_BWin.h \
|
|
11 SDL_lowvideo.h \
|
|
12 SDL_sysevents.cc \
|
|
13 SDL_sysevents_c.h \
|
|
14 SDL_sysmouse.cc \
|
|
15 SDL_sysmouse_c.h \
|
|
16 SDL_sysvideo.cc \
|
|
17 SDL_syswm.cc \
|
|
18 SDL_syswm_c.h
|
|
19
|