mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
f0cd33c69e
Add -DWINE_NO_LONG_TYPES to modules that still have compilation warnings with long types. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
37 lines
735 B
Makefile
37 lines
735 B
Makefile
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
|
MODULE = winemac.drv
|
|
IMPORTS = uuid rpcrt4 user32 gdi32 advapi32 win32u
|
|
DELAYIMPORTS = ole32 shell32 imm32
|
|
EXTRALIBS = -framework AppKit -framework Carbon -framework Security -framework OpenGL -framework IOKit -framework CoreVideo -framework QuartzCore $(METAL_LIBS)
|
|
|
|
EXTRADLLFLAGS = -mcygwin
|
|
|
|
C_SRCS = \
|
|
clipboard.c \
|
|
display.c \
|
|
dragdrop.c \
|
|
event.c \
|
|
gdi.c \
|
|
image.c \
|
|
ime.c \
|
|
keyboard.c \
|
|
macdrv_main.c \
|
|
mouse.c \
|
|
opengl.c \
|
|
surface.c \
|
|
systray.c \
|
|
vulkan.c \
|
|
window.c
|
|
|
|
OBJC_SRCS = \
|
|
cocoa_app.m \
|
|
cocoa_clipboard.m \
|
|
cocoa_cursorclipping.m \
|
|
cocoa_display.m \
|
|
cocoa_event.m \
|
|
cocoa_main.m \
|
|
cocoa_opengl.m \
|
|
cocoa_status_item.m \
|
|
cocoa_window.m
|
|
|
|
RC_SRCS = winemac.rc
|