Mercurial > minori
comparison Makefile.am @ 329:4aeffed717ef
dep/fmt: add dependency
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Mon, 17 Jun 2024 04:54:44 -0400 |
| parents | 10096c5489e3 |
| children | a7d4e5107531 |
comparison
equal
deleted
inserted
replaced
| 328:71396ecb6f7e | 329:4aeffed717ef |
|---|---|
| 15 done; | 15 done; |
| 16 printf "\t</qresource>\n</RCC>\n" >> $@; | 16 printf "\t</qresource>\n</RCC>\n" >> $@; |
| 17 | 17 |
| 18 # Qt resources | 18 # Qt resources |
| 19 | 19 |
| 20 | 20 dep_json_include = \ |
| 21 dep/json/json.hpp \ | |
| 22 dep/json/json_fwd.hpp | |
| 23 | |
| 24 dep_toml_include = \ | |
| 25 dep/toml11/toml.hpp \ | |
| 26 dep/toml11/toml/color.hpp \ | |
| 27 dep/toml11/toml/combinator.hpp \ | |
| 28 dep/toml11/toml/comments.hpp \ | |
| 29 dep/toml11/toml/datetime.hpp \ | |
| 30 dep/toml11/toml/exception.hpp \ | |
| 31 dep/toml11/toml/from.hpp \ | |
| 32 dep/toml11/toml/get.hpp \ | |
| 33 dep/toml11/toml/into.hpp \ | |
| 34 dep/toml11/toml/lexer.hpp \ | |
| 35 dep/toml11/toml/literal.hpp \ | |
| 36 dep/toml11/toml/macros.hpp \ | |
| 37 dep/toml11/toml/parser.hpp \ | |
| 38 dep/toml11/toml/region.hpp \ | |
| 39 dep/toml11/toml/result.hpp \ | |
| 40 dep/toml11/toml/serializer.hpp \ | |
| 41 dep/toml11/toml/source_location.hpp \ | |
| 42 dep/toml11/toml/storage.hpp \ | |
| 43 dep/toml11/toml/string.hpp \ | |
| 44 dep/toml11/toml/traits.hpp \ | |
| 45 dep/toml11/toml/types.hpp \ | |
| 46 dep/toml11/toml/utility.hpp \ | |
| 47 dep/toml11/toml/value.hpp \ | |
| 48 dep/toml11/toml/version.hpp | |
| 49 | |
| 50 dep_semver_include = \ | |
| 51 dep/semver/semver.hpp | |
| 52 | |
| 53 dep_fmt_include = \ | |
| 54 dep/fmt/include/fmt/ostream.h \ | |
| 55 dep/fmt/include/fmt/format-inl.h \ | |
| 56 dep/fmt/include/fmt/ranges.h \ | |
| 57 dep/fmt/include/fmt/xchar.h \ | |
| 58 dep/fmt/include/fmt/core.h \ | |
| 59 dep/fmt/include/fmt/chrono.h \ | |
| 60 dep/fmt/include/fmt/os.h \ | |
| 61 dep/fmt/include/fmt/color.h \ | |
| 62 dep/fmt/include/fmt/args.h \ | |
| 63 dep/fmt/include/fmt/printf.h \ | |
| 64 dep/fmt/include/fmt/compile.h \ | |
| 65 dep/fmt/include/fmt/format.h \ | |
| 66 dep/fmt/include/fmt/std.h | |
| 67 | |
| 68 dep_fmt_source = \ | |
| 69 dep/fmt/src/format.cc \ | |
| 70 dep/fmt/src/os.cc | |
| 21 | 71 |
| 22 minori_qtrc = \ | 72 minori_qtrc = \ |
| 23 $(top_srcdir)/rc/icons/icons.qrc \ | 73 $(top_srcdir)/rc/icons/icons.qrc \ |
| 24 $(top_srcdir)/rc/animone.qrc \ | 74 $(top_srcdir)/rc/animone.qrc \ |
| 25 rc/locale/translations.qrc | 75 rc/locale/translations.qrc |
| 172 include/sys/glib/dark_theme.h \ | 222 include/sys/glib/dark_theme.h \ |
| 173 include/sys/osx/dark_theme.h \ | 223 include/sys/osx/dark_theme.h \ |
| 174 include/sys/osx/permissions.h \ | 224 include/sys/osx/permissions.h \ |
| 175 include/sys/win32/dark_theme.h \ | 225 include/sys/win32/dark_theme.h \ |
| 176 include/track/media.h \ | 226 include/track/media.h \ |
| 177 dep/json/json.hpp \ | 227 $(dep_json_include) \ |
| 178 dep/json/json_fwd.hpp \ | 228 $(dep_toml_include) \ |
| 179 dep/toml11/toml.hpp \ | 229 $(dep_semver_include) \ |
| 180 dep/toml11/toml/color.hpp \ | 230 $(dep_fmt_include) \ |
| 181 dep/toml11/toml/combinator.hpp \ | |
| 182 dep/toml11/toml/comments.hpp \ | |
| 183 dep/toml11/toml/datetime.hpp \ | |
| 184 dep/toml11/toml/exception.hpp \ | |
| 185 dep/toml11/toml/from.hpp \ | |
| 186 dep/toml11/toml/get.hpp \ | |
| 187 dep/toml11/toml/into.hpp \ | |
| 188 dep/toml11/toml/lexer.hpp \ | |
| 189 dep/toml11/toml/literal.hpp \ | |
| 190 dep/toml11/toml/macros.hpp \ | |
| 191 dep/toml11/toml/parser.hpp \ | |
| 192 dep/toml11/toml/region.hpp \ | |
| 193 dep/toml11/toml/result.hpp \ | |
| 194 dep/toml11/toml/serializer.hpp \ | |
| 195 dep/toml11/toml/source_location.hpp \ | |
| 196 dep/toml11/toml/storage.hpp \ | |
| 197 dep/toml11/toml/string.hpp \ | |
| 198 dep/toml11/toml/traits.hpp \ | |
| 199 dep/toml11/toml/types.hpp \ | |
| 200 dep/toml11/toml/utility.hpp \ | |
| 201 dep/toml11/toml/value.hpp \ | |
| 202 dep/toml11/toml/version.hpp \ | |
| 203 dep/semver/semver.hpp \ | |
| 204 $(minori_qtheaders) | 231 $(minori_qtheaders) |
| 205 | 232 |
| 206 minori_utf8proc_sources = \ | 233 minori_utf8proc_sources = \ |
| 207 dep/utf8proc/utf8proc.c | 234 dep/utf8proc/utf8proc.c |
| 208 | 235 |
| 264 $(minori_qtrc) \ | 291 $(minori_qtrc) \ |
| 265 $(minori_qtrc_win) \ | 292 $(minori_qtrc_win) \ |
| 266 $(minori_locale_qm) \ | 293 $(minori_locale_qm) \ |
| 267 $(minori_moc_sources) \ | 294 $(minori_moc_sources) \ |
| 268 $(minori_utf8proc_sources) \ | 295 $(minori_utf8proc_sources) \ |
| 296 $(dep_fmt_source) \ | |
| 269 rc/final_qrc.cc | 297 rc/final_qrc.cc |
| 270 | 298 |
| 271 minori_includes = \ | 299 minori_includes = \ |
| 272 -I$(top_srcdir)/include \ | 300 -I$(top_srcdir)/include \ |
| 301 -I$(top_srcdir)/dep/fmt/include \ | |
| 273 -I$(top_srcdir)/dep/animone/include \ | 302 -I$(top_srcdir)/dep/animone/include \ |
| 274 -I$(top_srcdir)/dep/pugixml/src \ | 303 -I$(top_srcdir)/dep/pugixml/src \ |
| 275 -I$(top_srcdir)/dep/anitomy \ | 304 -I$(top_srcdir)/dep/anitomy \ |
| 276 -I$(top_srcdir)/dep/utf8proc \ | 305 -I$(top_srcdir)/dep/utf8proc \ |
| 277 -I$(top_srcdir)/dep | 306 -I$(top_srcdir)/dep |
