Mercurial > minori
comparison dep/animone/Makefile.am @ 342:adb79bdde329
dep/animone: fix tons of issues
for example, the window ID stuff was just... completely wrong. since we're
supporting multiple different window systems, it *has* to be a union rather
than just a single integer type. HWND is also not a DWORD, it's a pointer(!),
so now it's stored as a std::uintptr_t.
(this probably breaks things)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 20 Jun 2024 03:03:05 -0400 |
parents | 74e2365326c6 |
children |
comparison
equal
deleted
inserted
replaced
341:052ec053ee37 | 342:adb79bdde329 |
---|---|
27 include/animone/util.h \ | 27 include/animone/util.h \ |
28 include/animone/win.h | 28 include/animone/win.h |
29 | 29 |
30 if BUILD_WIN | 30 if BUILD_WIN |
31 files_win = src/a11y/win32.cc src/fd/win32.cc src/win/win32.cc src/util/win32.cc | 31 files_win = src/a11y/win32.cc src/fd/win32.cc src/win/win32.cc src/util/win32.cc |
32 libs_win = -lole32 -luuid | 32 libs_win = -lole32 -loleaut32 -luuid |
33 endif | 33 endif |
34 | 34 |
35 if BUILD_OSX | 35 if BUILD_OSX |
36 files_osx = src/fd/xnu.cc src/win/quartz.cc | 36 files_osx = src/fd/xnu.cc src/win/quartz.cc |
37 libs_osx = -lobjc | 37 libs_osx = -lobjc |
81 $(files_x11) | 81 $(files_x11) |
82 | 82 |
83 libanimone_la_CPPFLAGS = -I$(top_srcdir)/include $(DEFS) | 83 libanimone_la_CPPFLAGS = -I$(top_srcdir)/include $(DEFS) |
84 | 84 |
85 libanimone_la_CXXFLAGS = -std=c++17 $(cflags_osx) $(cflags_x11) $(cflags_wayland) | 85 libanimone_la_CXXFLAGS = -std=c++17 $(cflags_osx) $(cflags_x11) $(cflags_wayland) |
86 libanimone_la_LDFLAGS = -version-info 0:0:0 $(ldflags_osx) | 86 libanimone_la_LDFLAGS = -no-undefined -version-info 0:0:0 $(ldflags_osx) |
87 | 87 |
88 libanimone_la_LIBADD = $(libs_win) $(libs_wayland) $(libs_x11) $(libs_osx) $(libs_libutil) $(libs_libkvm) | 88 libanimone_la_LIBADD = $(libs_win) $(libs_wayland) $(libs_x11) $(libs_osx) $(libs_freebsd) $(libs_openbsd) |
89 | 89 |
90 ACLOCAL_AMFLAGS = -I m4 | 90 ACLOCAL_AMFLAGS = -I m4 |