Mercurial > minori
annotate 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 |
rev | line source |
---|---|
258 | 1 lib_LTLIBRARIES = libanimone.la |
2 | |
3 include_HEADERS = \ | |
4 include/animone.h | |
5 | |
6 animiadir = $(includedir)/animone | |
7 nobase_animia_HEADERS = \ | |
8 include/animone/media.h \ | |
9 include/animone/player.h \ | |
10 include/animone/types.h | |
11 | |
12 noinst_HEADERS = \ | |
340
74e2365326c6
dep/animone: add experimental accessibility strategy
Paper <paper@paper.us.eu.org>
parents:
338
diff
changeset
|
13 include/animone/a11y/win32.h \ |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
14 include/animone/fd/freebsd.h \ |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
15 include/animone/fd/openbsd.h \ |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
16 include/animone/fd/netbsd.h \ |
258 | 17 include/animone/fd/proc.h \ |
18 include/animone/fd/win32.h \ | |
19 include/animone/fd/xnu.h \ | |
20 include/animone/util/win32.h \ | |
21 include/animone/win/quartz.h \ | |
22 include/animone/win/win32.h \ | |
23 include/animone/win/x11.h \ | |
340
74e2365326c6
dep/animone: add experimental accessibility strategy
Paper <paper@paper.us.eu.org>
parents:
338
diff
changeset
|
24 include/animone/a11y.h \ |
258 | 25 include/animone/fd.h \ |
26 include/animone/strategies.h \ | |
27 include/animone/util.h \ | |
28 include/animone/win.h | |
29 | |
30 if BUILD_WIN | |
340
74e2365326c6
dep/animone: add experimental accessibility strategy
Paper <paper@paper.us.eu.org>
parents:
338
diff
changeset
|
31 files_win = src/a11y/win32.cc src/fd/win32.cc src/win/win32.cc src/util/win32.cc |
342
adb79bdde329
dep/animone: fix tons of issues
Paper <paper@paper.us.eu.org>
parents:
340
diff
changeset
|
32 libs_win = -lole32 -loleaut32 -luuid |
258 | 33 endif |
34 | |
35 if BUILD_OSX | |
303
ab7ff259b4ca
dep/animone: remove old OS X files from makefile
Paper <paper@paper.us.eu.org>
parents:
266
diff
changeset
|
36 files_osx = src/fd/xnu.cc src/win/quartz.cc |
258 | 37 libs_osx = -lobjc |
38 ldflags_osx = -framework Foundation -framework CoreGraphics -framework ApplicationServices | |
39 endif | |
40 | |
41 if BUILD_LINUX | |
42 files_linux = src/fd/proc.cc | |
43 endif | |
44 | |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
45 if BUILD_FREEBSD |
266
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
46 |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
47 files_freebsd = src/fd/freebsd.cc |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
48 libs_freebsd = -lutil |
266
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
49 |
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
50 endif |
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
51 |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
52 if BUILD_OPENBSD |
266
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
53 |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
54 files_openbsd = src/fd/openbsd.cc |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
55 libs_openbsd = -lkvm |
266
1a6a5d3a94cd
dep/animone: make bsd.cc and x11.cc actually work
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
56 |
258 | 57 endif |
58 | |
59 if BUILD_XCB | |
60 files_x11 = src/win/x11.cc | |
61 cflags_x11 = $(XCB_CFLAGS) | |
62 libs_x11 = $(XCB_LIBS) | |
63 endif | |
64 | |
65 EXTRA_DIST = \ | |
66 $(top_srcdir)/data/players.anisthesia | |
67 | |
68 libanimone_la_SOURCES = \ | |
69 src/animone.cc \ | |
340
74e2365326c6
dep/animone: add experimental accessibility strategy
Paper <paper@paper.us.eu.org>
parents:
338
diff
changeset
|
70 src/a11y.cc \ |
258 | 71 src/fd.cc \ |
72 src/player.cc \ | |
73 src/strategist.cc \ | |
74 src/util.cc \ | |
75 src/win.cc \ | |
76 $(files_win) \ | |
77 $(files_osx) \ | |
78 $(files_linux) \ | |
338
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
79 $(files_freebsd) \ |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
80 $(files_openbsd) \ |
f63dfa309380
dep/animone: separate *BSD into separate files
Paper <paper@paper.us.eu.org>
parents:
303
diff
changeset
|
81 $(files_x11) |
258 | 82 |
83 libanimone_la_CPPFLAGS = -I$(top_srcdir)/include $(DEFS) | |
84 | |
85 libanimone_la_CXXFLAGS = -std=c++17 $(cflags_osx) $(cflags_x11) $(cflags_wayland) | |
342
adb79bdde329
dep/animone: fix tons of issues
Paper <paper@paper.us.eu.org>
parents:
340
diff
changeset
|
86 libanimone_la_LDFLAGS = -no-undefined -version-info 0:0:0 $(ldflags_osx) |
258 | 87 |
342
adb79bdde329
dep/animone: fix tons of issues
Paper <paper@paper.us.eu.org>
parents:
340
diff
changeset
|
88 libanimone_la_LIBADD = $(libs_win) $(libs_wayland) $(libs_x11) $(libs_osx) $(libs_freebsd) $(libs_openbsd) |
258 | 89 |
90 ACLOCAL_AMFLAGS = -I m4 |