2015-05-14 08:43:25 -05:00
|
|
|
# 22 april 2015
|
|
|
|
|
2015-10-16 19:55:09 -05:00
|
|
|
CFILES += \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/alloc.c \
|
2015-10-09 10:17:58 -05:00
|
|
|
windows/area.c \
|
2015-12-18 11:00:46 -06:00
|
|
|
windows/areadraw.c \
|
|
|
|
windows/areaevents.c \
|
|
|
|
windows/areascroll.c \
|
2015-06-30 00:06:36 -05:00
|
|
|
windows/box.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/button.c \
|
|
|
|
windows/checkbox.c \
|
2015-08-31 16:05:50 -05:00
|
|
|
windows/child.c \
|
2015-05-20 16:09:58 -05:00
|
|
|
windows/combobox.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/container.c \
|
2015-05-15 20:12:54 -05:00
|
|
|
windows/control.c \
|
2015-05-22 09:36:24 -05:00
|
|
|
windows/datetimepicker.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/debug.c \
|
2015-10-09 10:17:58 -05:00
|
|
|
windows/draw.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/entry.c \
|
2015-05-20 21:46:50 -05:00
|
|
|
windows/events.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/group.c \
|
|
|
|
windows/init.c \
|
|
|
|
windows/label.c \
|
|
|
|
windows/main.c \
|
|
|
|
windows/menu.c \
|
2015-12-06 13:38:13 -06:00
|
|
|
windows/multilineentry.c \
|
2015-05-15 20:12:54 -05:00
|
|
|
windows/parent.c \
|
2015-05-19 20:05:18 -05:00
|
|
|
windows/progressbar.c \
|
2015-05-20 16:52:21 -05:00
|
|
|
windows/radiobuttons.c \
|
2015-05-15 20:12:54 -05:00
|
|
|
windows/resize.c \
|
2015-05-20 13:08:34 -05:00
|
|
|
windows/separator.c \
|
2015-05-20 09:29:57 -05:00
|
|
|
windows/slider.c \
|
2015-05-19 11:32:14 -05:00
|
|
|
windows/spinbox.c \
|
2015-05-22 18:14:25 -05:00
|
|
|
windows/stddialogs.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/tab.c \
|
2015-05-30 11:28:52 -05:00
|
|
|
windows/tabpage.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/text.c \
|
|
|
|
windows/util.c \
|
2015-05-15 20:12:54 -05:00
|
|
|
windows/utilwin.c \
|
2015-05-14 08:43:25 -05:00
|
|
|
windows/window.c
|
|
|
|
|
2015-10-16 19:55:09 -05:00
|
|
|
HFILES += \
|
2015-12-18 11:00:46 -06:00
|
|
|
windows/area.h \
|
2015-06-09 11:16:59 -05:00
|
|
|
windows/compilerver.h \
|
2015-05-30 13:33:23 -05:00
|
|
|
windows/resources.h \
|
2015-05-31 10:12:29 -05:00
|
|
|
windows/uipriv_windows.h \
|
|
|
|
windows/winapi.h
|
2015-05-14 08:43:25 -05:00
|
|
|
|
2015-10-16 19:55:09 -05:00
|
|
|
RCFILES += \
|
2015-05-30 13:33:23 -05:00
|
|
|
windows/resources.rc
|
|
|
|
|
2015-12-11 18:49:14 -06:00
|
|
|
# TODO split into a separate file or put in GNUmakefile.libui somehow?
|
2015-05-14 08:43:25 -05:00
|
|
|
|
2015-12-11 18:49:14 -06:00
|
|
|
# flags for the Windows API
|
2015-10-16 19:55:09 -05:00
|
|
|
LDFLAGS += \
|
2015-12-11 18:49:14 -06:00
|
|
|
user32.lib kernel32.lib gdi32.lib comctl32.lib uxtheme.lib msimg32.lib comdlg32.lib d2d1.lib ole32.lib oleaut32.lib oleacc.lib uuid.lib
|
2015-05-14 08:43:25 -05:00
|
|
|
|
2015-12-11 18:49:14 -06:00
|
|
|
# flags for building a shared library
|
2015-10-16 19:55:09 -05:00
|
|
|
LDFLAGS += \
|
2015-12-11 18:49:14 -06:00
|
|
|
/dll
|
|
|
|
|
|
|
|
# TODO flags for warning on undefined symbols
|
|
|
|
|
|
|
|
# no need for a soname
|
|
|
|
|
|
|
|
# TODO .def file
|