Files.cmake 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. LIST (APPEND msgpackc_SOURCES
  2. src/objectc.c
  3. src/unpack.c
  4. src/version.c
  5. src/vrefbuffer.c
  6. src/zone.c
  7. )
  8. LIST (APPEND msgpackc_HEADERS
  9. include/msgpack.h
  10. include/msgpack/fbuffer.h
  11. include/msgpack/gcc_atomic.h
  12. include/msgpack/object.h
  13. include/msgpack/pack.h
  14. include/msgpack/pack_define.h
  15. include/msgpack/pack_template.h
  16. include/msgpack/predef.h
  17. include/msgpack/predef/architecture.h
  18. include/msgpack/predef/architecture/alpha.h
  19. include/msgpack/predef/architecture/arm.h
  20. include/msgpack/predef/architecture/blackfin.h
  21. include/msgpack/predef/architecture/convex.h
  22. include/msgpack/predef/architecture/ia64.h
  23. include/msgpack/predef/architecture/m68k.h
  24. include/msgpack/predef/architecture/mips.h
  25. include/msgpack/predef/architecture/parisc.h
  26. include/msgpack/predef/architecture/ppc.h
  27. include/msgpack/predef/architecture/ptx.h
  28. include/msgpack/predef/architecture/pyramid.h
  29. include/msgpack/predef/architecture/rs6k.h
  30. include/msgpack/predef/architecture/sparc.h
  31. include/msgpack/predef/architecture/superh.h
  32. include/msgpack/predef/architecture/sys370.h
  33. include/msgpack/predef/architecture/sys390.h
  34. include/msgpack/predef/architecture/x86.h
  35. include/msgpack/predef/architecture/x86/32.h
  36. include/msgpack/predef/architecture/x86/64.h
  37. include/msgpack/predef/architecture/z.h
  38. include/msgpack/predef/compiler.h
  39. include/msgpack/predef/compiler/borland.h
  40. include/msgpack/predef/compiler/clang.h
  41. include/msgpack/predef/compiler/comeau.h
  42. include/msgpack/predef/compiler/compaq.h
  43. include/msgpack/predef/compiler/diab.h
  44. include/msgpack/predef/compiler/digitalmars.h
  45. include/msgpack/predef/compiler/dignus.h
  46. include/msgpack/predef/compiler/edg.h
  47. include/msgpack/predef/compiler/ekopath.h
  48. include/msgpack/predef/compiler/gcc.h
  49. include/msgpack/predef/compiler/gcc_xml.h
  50. include/msgpack/predef/compiler/greenhills.h
  51. include/msgpack/predef/compiler/hp_acc.h
  52. include/msgpack/predef/compiler/iar.h
  53. include/msgpack/predef/compiler/ibm.h
  54. include/msgpack/predef/compiler/intel.h
  55. include/msgpack/predef/compiler/kai.h
  56. include/msgpack/predef/compiler/llvm.h
  57. include/msgpack/predef/compiler/metaware.h
  58. include/msgpack/predef/compiler/metrowerks.h
  59. include/msgpack/predef/compiler/microtec.h
  60. include/msgpack/predef/compiler/mpw.h
  61. include/msgpack/predef/compiler/nvcc.h
  62. include/msgpack/predef/compiler/palm.h
  63. include/msgpack/predef/compiler/pgi.h
  64. include/msgpack/predef/compiler/sgi_mipspro.h
  65. include/msgpack/predef/compiler/sunpro.h
  66. include/msgpack/predef/compiler/tendra.h
  67. include/msgpack/predef/compiler/visualc.h
  68. include/msgpack/predef/compiler/watcom.h
  69. include/msgpack/predef/detail/_cassert.h
  70. include/msgpack/predef/detail/_exception.h
  71. include/msgpack/predef/detail/comp_detected.h
  72. include/msgpack/predef/detail/endian_compat.h
  73. include/msgpack/predef/detail/os_detected.h
  74. include/msgpack/predef/detail/platform_detected.h
  75. include/msgpack/predef/detail/test.h
  76. include/msgpack/predef/detail/test_def.h
  77. include/msgpack/predef/hardware.h
  78. include/msgpack/predef/hardware/simd.h
  79. include/msgpack/predef/hardware/simd/arm.h
  80. include/msgpack/predef/hardware/simd/arm/versions.h
  81. include/msgpack/predef/hardware/simd/ppc.h
  82. include/msgpack/predef/hardware/simd/ppc/versions.h
  83. include/msgpack/predef/hardware/simd/x86.h
  84. include/msgpack/predef/hardware/simd/x86/versions.h
  85. include/msgpack/predef/hardware/simd/x86_amd.h
  86. include/msgpack/predef/hardware/simd/x86_amd/versions.h
  87. include/msgpack/predef/language.h
  88. include/msgpack/predef/language/cuda.h
  89. include/msgpack/predef/language/objc.h
  90. include/msgpack/predef/language/stdc.h
  91. include/msgpack/predef/language/stdcpp.h
  92. include/msgpack/predef/library.h
  93. include/msgpack/predef/library/c.h
  94. include/msgpack/predef/library/c/_prefix.h
  95. include/msgpack/predef/library/c/cloudabi.h
  96. include/msgpack/predef/library/c/gnu.h
  97. include/msgpack/predef/library/c/uc.h
  98. include/msgpack/predef/library/c/vms.h
  99. include/msgpack/predef/library/c/zos.h
  100. include/msgpack/predef/library/std.h
  101. include/msgpack/predef/library/std/_prefix.h
  102. include/msgpack/predef/library/std/cxx.h
  103. include/msgpack/predef/library/std/dinkumware.h
  104. include/msgpack/predef/library/std/libcomo.h
  105. include/msgpack/predef/library/std/modena.h
  106. include/msgpack/predef/library/std/msl.h
  107. include/msgpack/predef/library/std/roguewave.h
  108. include/msgpack/predef/library/std/sgi.h
  109. include/msgpack/predef/library/std/stdcpp3.h
  110. include/msgpack/predef/library/std/stlport.h
  111. include/msgpack/predef/library/std/vacpp.h
  112. include/msgpack/predef/make.h
  113. include/msgpack/predef/os.h
  114. include/msgpack/predef/os/aix.h
  115. include/msgpack/predef/os/amigaos.h
  116. include/msgpack/predef/os/android.h
  117. include/msgpack/predef/os/beos.h
  118. include/msgpack/predef/os/bsd.h
  119. include/msgpack/predef/os/bsd/bsdi.h
  120. include/msgpack/predef/os/bsd/dragonfly.h
  121. include/msgpack/predef/os/bsd/free.h
  122. include/msgpack/predef/os/bsd/net.h
  123. include/msgpack/predef/os/bsd/open.h
  124. include/msgpack/predef/os/cygwin.h
  125. include/msgpack/predef/os/haiku.h
  126. include/msgpack/predef/os/hpux.h
  127. include/msgpack/predef/os/ios.h
  128. include/msgpack/predef/os/irix.h
  129. include/msgpack/predef/os/linux.h
  130. include/msgpack/predef/os/macos.h
  131. include/msgpack/predef/os/os400.h
  132. include/msgpack/predef/os/qnxnto.h
  133. include/msgpack/predef/os/solaris.h
  134. include/msgpack/predef/os/unix.h
  135. include/msgpack/predef/os/vms.h
  136. include/msgpack/predef/os/windows.h
  137. include/msgpack/predef/other.h
  138. include/msgpack/predef/other/endian.h
  139. include/msgpack/predef/other/workaround.h
  140. include/msgpack/predef/platform.h
  141. include/msgpack/predef/platform/cloudabi.h
  142. include/msgpack/predef/platform/ios.h
  143. include/msgpack/predef/platform/mingw.h
  144. include/msgpack/predef/platform/mingw32.h
  145. include/msgpack/predef/platform/mingw64.h
  146. include/msgpack/predef/platform/windows_desktop.h
  147. include/msgpack/predef/platform/windows_phone.h
  148. include/msgpack/predef/platform/windows_runtime.h
  149. include/msgpack/predef/platform/windows_server.h
  150. include/msgpack/predef/platform/windows_store.h
  151. include/msgpack/predef/platform/windows_system.h
  152. include/msgpack/predef/platform/windows_uwp.h
  153. include/msgpack/predef/version.h
  154. include/msgpack/predef/version_number.h
  155. include/msgpack/sbuffer.h
  156. include/msgpack/sysdep.h
  157. include/msgpack/timestamp.h
  158. include/msgpack/unpack.h
  159. include/msgpack/unpack_define.h
  160. include/msgpack/unpack_template.h
  161. include/msgpack/util.h
  162. include/msgpack/version.h
  163. include/msgpack/version_master.h
  164. include/msgpack/vrefbuffer.h
  165. include/msgpack/zbuffer.h
  166. include/msgpack/zone.h
  167. )
  168. IF (MSGPACK_ENABLE_CXX)
  169. LIST (APPEND msgpackc_HEADERS
  170. include/msgpack.hpp
  171. include/msgpack/adaptor/adaptor_base.hpp
  172. include/msgpack/adaptor/adaptor_base_decl.hpp
  173. include/msgpack/adaptor/array_ref.hpp
  174. include/msgpack/adaptor/array_ref_decl.hpp
  175. include/msgpack/adaptor/bool.hpp
  176. include/msgpack/adaptor/boost/fusion.hpp
  177. include/msgpack/adaptor/boost/msgpack_variant.hpp
  178. include/msgpack/adaptor/boost/msgpack_variant_decl.hpp
  179. include/msgpack/adaptor/boost/optional.hpp
  180. include/msgpack/adaptor/boost/string_ref.hpp
  181. include/msgpack/adaptor/boost/string_view.hpp
  182. include/msgpack/adaptor/carray.hpp
  183. include/msgpack/adaptor/char_ptr.hpp
  184. include/msgpack/adaptor/check_container_size.hpp
  185. include/msgpack/adaptor/check_container_size_decl.hpp
  186. include/msgpack/adaptor/cpp11/array.hpp
  187. include/msgpack/adaptor/cpp11/array_char.hpp
  188. include/msgpack/adaptor/cpp11/array_unsigned_char.hpp
  189. include/msgpack/adaptor/cpp11/chrono.hpp
  190. include/msgpack/adaptor/cpp11/forward_list.hpp
  191. include/msgpack/adaptor/cpp11/reference_wrapper.hpp
  192. include/msgpack/adaptor/cpp11/shared_ptr.hpp
  193. include/msgpack/adaptor/cpp11/tuple.hpp
  194. include/msgpack/adaptor/cpp11/unique_ptr.hpp
  195. include/msgpack/adaptor/cpp11/unordered_map.hpp
  196. include/msgpack/adaptor/cpp11/unordered_set.hpp
  197. include/msgpack/adaptor/cpp17/byte.hpp
  198. include/msgpack/adaptor/cpp17/carray_byte.hpp
  199. include/msgpack/adaptor/cpp17/optional.hpp
  200. include/msgpack/adaptor/cpp17/string_view.hpp
  201. include/msgpack/adaptor/cpp17/vector_byte.hpp
  202. include/msgpack/adaptor/define.hpp
  203. include/msgpack/adaptor/define_decl.hpp
  204. include/msgpack/adaptor/deque.hpp
  205. include/msgpack/adaptor/ext.hpp
  206. include/msgpack/adaptor/ext_decl.hpp
  207. include/msgpack/adaptor/fixint.hpp
  208. include/msgpack/adaptor/fixint_decl.hpp
  209. include/msgpack/adaptor/float.hpp
  210. include/msgpack/adaptor/int.hpp
  211. include/msgpack/adaptor/int_decl.hpp
  212. include/msgpack/adaptor/list.hpp
  213. include/msgpack/adaptor/map.hpp
  214. include/msgpack/adaptor/map_decl.hpp
  215. include/msgpack/adaptor/msgpack_tuple.hpp
  216. include/msgpack/adaptor/msgpack_tuple_decl.hpp
  217. include/msgpack/adaptor/nil.hpp
  218. include/msgpack/adaptor/nil_decl.hpp
  219. include/msgpack/adaptor/pair.hpp
  220. include/msgpack/adaptor/raw.hpp
  221. include/msgpack/adaptor/raw_decl.hpp
  222. include/msgpack/adaptor/set.hpp
  223. include/msgpack/adaptor/size_equal_only.hpp
  224. include/msgpack/adaptor/size_equal_only_decl.hpp
  225. include/msgpack/adaptor/string.hpp
  226. include/msgpack/adaptor/tr1/unordered_map.hpp
  227. include/msgpack/adaptor/tr1/unordered_set.hpp
  228. include/msgpack/adaptor/v4raw.hpp
  229. include/msgpack/adaptor/v4raw_decl.hpp
  230. include/msgpack/adaptor/vector.hpp
  231. include/msgpack/adaptor/vector_bool.hpp
  232. include/msgpack/adaptor/vector_char.hpp
  233. include/msgpack/adaptor/vector_unsigned_char.hpp
  234. include/msgpack/cpp_config.hpp
  235. include/msgpack/cpp_config_decl.hpp
  236. include/msgpack/create_object_visitor.hpp
  237. include/msgpack/create_object_visitor_decl.hpp
  238. include/msgpack/fbuffer.hpp
  239. include/msgpack/fbuffer_decl.hpp
  240. include/msgpack/gcc_atomic.hpp
  241. include/msgpack/iterator.hpp
  242. include/msgpack/iterator_decl.hpp
  243. include/msgpack/meta.hpp
  244. include/msgpack/meta_decl.hpp
  245. include/msgpack/null_visitor.hpp
  246. include/msgpack/null_visitor_decl.hpp
  247. include/msgpack/object.hpp
  248. include/msgpack/object_decl.hpp
  249. include/msgpack/object_fwd.hpp
  250. include/msgpack/object_fwd_decl.hpp
  251. include/msgpack/pack.hpp
  252. include/msgpack/pack_decl.hpp
  253. include/msgpack/parse.hpp
  254. include/msgpack/parse_decl.hpp
  255. include/msgpack/parse_return.hpp
  256. include/msgpack/preprocessor.hpp
  257. include/msgpack/preprocessor/arithmetic.hpp
  258. include/msgpack/preprocessor/arithmetic/add.hpp
  259. include/msgpack/preprocessor/arithmetic/dec.hpp
  260. include/msgpack/preprocessor/arithmetic/detail/div_base.hpp
  261. include/msgpack/preprocessor/arithmetic/div.hpp
  262. include/msgpack/preprocessor/arithmetic/inc.hpp
  263. include/msgpack/preprocessor/arithmetic/mod.hpp
  264. include/msgpack/preprocessor/arithmetic/mul.hpp
  265. include/msgpack/preprocessor/arithmetic/sub.hpp
  266. include/msgpack/preprocessor/array.hpp
  267. include/msgpack/preprocessor/array/data.hpp
  268. include/msgpack/preprocessor/array/detail/get_data.hpp
  269. include/msgpack/preprocessor/array/elem.hpp
  270. include/msgpack/preprocessor/array/enum.hpp
  271. include/msgpack/preprocessor/array/insert.hpp
  272. include/msgpack/preprocessor/array/pop_back.hpp
  273. include/msgpack/preprocessor/array/pop_front.hpp
  274. include/msgpack/preprocessor/array/push_back.hpp
  275. include/msgpack/preprocessor/array/push_front.hpp
  276. include/msgpack/preprocessor/array/remove.hpp
  277. include/msgpack/preprocessor/array/replace.hpp
  278. include/msgpack/preprocessor/array/reverse.hpp
  279. include/msgpack/preprocessor/array/size.hpp
  280. include/msgpack/preprocessor/array/to_list.hpp
  281. include/msgpack/preprocessor/array/to_seq.hpp
  282. include/msgpack/preprocessor/array/to_tuple.hpp
  283. include/msgpack/preprocessor/assert_msg.hpp
  284. include/msgpack/preprocessor/cat.hpp
  285. include/msgpack/preprocessor/comma.hpp
  286. include/msgpack/preprocessor/comma_if.hpp
  287. include/msgpack/preprocessor/comparison.hpp
  288. include/msgpack/preprocessor/comparison/equal.hpp
  289. include/msgpack/preprocessor/comparison/greater.hpp
  290. include/msgpack/preprocessor/comparison/greater_equal.hpp
  291. include/msgpack/preprocessor/comparison/less.hpp
  292. include/msgpack/preprocessor/comparison/less_equal.hpp
  293. include/msgpack/preprocessor/comparison/not_equal.hpp
  294. include/msgpack/preprocessor/config/config.hpp
  295. include/msgpack/preprocessor/config/limits.hpp
  296. include/msgpack/preprocessor/control.hpp
  297. include/msgpack/preprocessor/control/deduce_d.hpp
  298. include/msgpack/preprocessor/control/detail/dmc/while.hpp
  299. include/msgpack/preprocessor/control/detail/edg/while.hpp
  300. include/msgpack/preprocessor/control/detail/msvc/while.hpp
  301. include/msgpack/preprocessor/control/detail/while.hpp
  302. include/msgpack/preprocessor/control/expr_if.hpp
  303. include/msgpack/preprocessor/control/expr_iif.hpp
  304. include/msgpack/preprocessor/control/if.hpp
  305. include/msgpack/preprocessor/control/iif.hpp
  306. include/msgpack/preprocessor/control/while.hpp
  307. include/msgpack/preprocessor/debug.hpp
  308. include/msgpack/preprocessor/debug/assert.hpp
  309. include/msgpack/preprocessor/debug/error.hpp
  310. include/msgpack/preprocessor/debug/line.hpp
  311. include/msgpack/preprocessor/dec.hpp
  312. include/msgpack/preprocessor/detail/auto_rec.hpp
  313. include/msgpack/preprocessor/detail/check.hpp
  314. include/msgpack/preprocessor/detail/dmc/auto_rec.hpp
  315. include/msgpack/preprocessor/detail/is_binary.hpp
  316. include/msgpack/preprocessor/detail/is_nullary.hpp
  317. include/msgpack/preprocessor/detail/is_unary.hpp
  318. include/msgpack/preprocessor/detail/null.hpp
  319. include/msgpack/preprocessor/detail/split.hpp
  320. include/msgpack/preprocessor/empty.hpp
  321. include/msgpack/preprocessor/enum.hpp
  322. include/msgpack/preprocessor/enum_params.hpp
  323. include/msgpack/preprocessor/enum_params_with_a_default.hpp
  324. include/msgpack/preprocessor/enum_params_with_defaults.hpp
  325. include/msgpack/preprocessor/enum_shifted.hpp
  326. include/msgpack/preprocessor/enum_shifted_params.hpp
  327. include/msgpack/preprocessor/expand.hpp
  328. include/msgpack/preprocessor/expr_if.hpp
  329. include/msgpack/preprocessor/facilities.hpp
  330. include/msgpack/preprocessor/facilities/apply.hpp
  331. include/msgpack/preprocessor/facilities/detail/is_empty.hpp
  332. include/msgpack/preprocessor/facilities/empty.hpp
  333. include/msgpack/preprocessor/facilities/expand.hpp
  334. include/msgpack/preprocessor/facilities/identity.hpp
  335. include/msgpack/preprocessor/facilities/intercept.hpp
  336. include/msgpack/preprocessor/facilities/is_1.hpp
  337. include/msgpack/preprocessor/facilities/is_empty.hpp
  338. include/msgpack/preprocessor/facilities/is_empty_or_1.hpp
  339. include/msgpack/preprocessor/facilities/is_empty_variadic.hpp
  340. include/msgpack/preprocessor/facilities/overload.hpp
  341. include/msgpack/preprocessor/for.hpp
  342. include/msgpack/preprocessor/identity.hpp
  343. include/msgpack/preprocessor/if.hpp
  344. include/msgpack/preprocessor/inc.hpp
  345. include/msgpack/preprocessor/iterate.hpp
  346. include/msgpack/preprocessor/iteration.hpp
  347. include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp
  348. include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp
  349. include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp
  350. include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp
  351. include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp
  352. include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp
  353. include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp
  354. include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp
  355. include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp
  356. include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp
  357. include/msgpack/preprocessor/iteration/detail/finish.hpp
  358. include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp
  359. include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp
  360. include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp
  361. include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp
  362. include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp
  363. include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp
  364. include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp
  365. include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp
  366. include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp
  367. include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp
  368. include/msgpack/preprocessor/iteration/detail/local.hpp
  369. include/msgpack/preprocessor/iteration/detail/rlocal.hpp
  370. include/msgpack/preprocessor/iteration/detail/self.hpp
  371. include/msgpack/preprocessor/iteration/detail/start.hpp
  372. include/msgpack/preprocessor/iteration/iterate.hpp
  373. include/msgpack/preprocessor/iteration/local.hpp
  374. include/msgpack/preprocessor/iteration/self.hpp
  375. include/msgpack/preprocessor/library.hpp
  376. include/msgpack/preprocessor/limits.hpp
  377. include/msgpack/preprocessor/list.hpp
  378. include/msgpack/preprocessor/list/adt.hpp
  379. include/msgpack/preprocessor/list/append.hpp
  380. include/msgpack/preprocessor/list/at.hpp
  381. include/msgpack/preprocessor/list/cat.hpp
  382. include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp
  383. include/msgpack/preprocessor/list/detail/edg/fold_left.hpp
  384. include/msgpack/preprocessor/list/detail/edg/fold_right.hpp
  385. include/msgpack/preprocessor/list/detail/fold_left.hpp
  386. include/msgpack/preprocessor/list/detail/fold_right.hpp
  387. include/msgpack/preprocessor/list/enum.hpp
  388. include/msgpack/preprocessor/list/filter.hpp
  389. include/msgpack/preprocessor/list/first_n.hpp
  390. include/msgpack/preprocessor/list/fold_left.hpp
  391. include/msgpack/preprocessor/list/fold_right.hpp
  392. include/msgpack/preprocessor/list/for_each.hpp
  393. include/msgpack/preprocessor/list/for_each_i.hpp
  394. include/msgpack/preprocessor/list/for_each_product.hpp
  395. include/msgpack/preprocessor/list/rest_n.hpp
  396. include/msgpack/preprocessor/list/reverse.hpp
  397. include/msgpack/preprocessor/list/size.hpp
  398. include/msgpack/preprocessor/list/to_array.hpp
  399. include/msgpack/preprocessor/list/to_seq.hpp
  400. include/msgpack/preprocessor/list/to_tuple.hpp
  401. include/msgpack/preprocessor/list/transform.hpp
  402. include/msgpack/preprocessor/logical.hpp
  403. include/msgpack/preprocessor/logical/and.hpp
  404. include/msgpack/preprocessor/logical/bitand.hpp
  405. include/msgpack/preprocessor/logical/bitnor.hpp
  406. include/msgpack/preprocessor/logical/bitor.hpp
  407. include/msgpack/preprocessor/logical/bitxor.hpp
  408. include/msgpack/preprocessor/logical/bool.hpp
  409. include/msgpack/preprocessor/logical/compl.hpp
  410. include/msgpack/preprocessor/logical/nor.hpp
  411. include/msgpack/preprocessor/logical/not.hpp
  412. include/msgpack/preprocessor/logical/or.hpp
  413. include/msgpack/preprocessor/logical/xor.hpp
  414. include/msgpack/preprocessor/max.hpp
  415. include/msgpack/preprocessor/min.hpp
  416. include/msgpack/preprocessor/punctuation.hpp
  417. include/msgpack/preprocessor/punctuation/comma.hpp
  418. include/msgpack/preprocessor/punctuation/comma_if.hpp
  419. include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp
  420. include/msgpack/preprocessor/punctuation/is_begin_parens.hpp
  421. include/msgpack/preprocessor/punctuation/paren.hpp
  422. include/msgpack/preprocessor/punctuation/paren_if.hpp
  423. include/msgpack/preprocessor/punctuation/remove_parens.hpp
  424. include/msgpack/preprocessor/repeat.hpp
  425. include/msgpack/preprocessor/repeat_2nd.hpp
  426. include/msgpack/preprocessor/repeat_3rd.hpp
  427. include/msgpack/preprocessor/repeat_from_to.hpp
  428. include/msgpack/preprocessor/repeat_from_to_2nd.hpp
  429. include/msgpack/preprocessor/repeat_from_to_3rd.hpp
  430. include/msgpack/preprocessor/repetition.hpp
  431. include/msgpack/preprocessor/repetition/deduce_r.hpp
  432. include/msgpack/preprocessor/repetition/deduce_z.hpp
  433. include/msgpack/preprocessor/repetition/detail/dmc/for.hpp
  434. include/msgpack/preprocessor/repetition/detail/edg/for.hpp
  435. include/msgpack/preprocessor/repetition/detail/for.hpp
  436. include/msgpack/preprocessor/repetition/detail/msvc/for.hpp
  437. include/msgpack/preprocessor/repetition/enum.hpp
  438. include/msgpack/preprocessor/repetition/enum_binary_params.hpp
  439. include/msgpack/preprocessor/repetition/enum_params.hpp
  440. include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp
  441. include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp
  442. include/msgpack/preprocessor/repetition/enum_shifted.hpp
  443. include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp
  444. include/msgpack/preprocessor/repetition/enum_shifted_params.hpp
  445. include/msgpack/preprocessor/repetition/enum_trailing.hpp
  446. include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp
  447. include/msgpack/preprocessor/repetition/enum_trailing_params.hpp
  448. include/msgpack/preprocessor/repetition/for.hpp
  449. include/msgpack/preprocessor/repetition/repeat.hpp
  450. include/msgpack/preprocessor/repetition/repeat_from_to.hpp
  451. include/msgpack/preprocessor/selection.hpp
  452. include/msgpack/preprocessor/selection/max.hpp
  453. include/msgpack/preprocessor/selection/min.hpp
  454. include/msgpack/preprocessor/seq.hpp
  455. include/msgpack/preprocessor/seq/cat.hpp
  456. include/msgpack/preprocessor/seq/detail/binary_transform.hpp
  457. include/msgpack/preprocessor/seq/detail/is_empty.hpp
  458. include/msgpack/preprocessor/seq/detail/split.hpp
  459. include/msgpack/preprocessor/seq/detail/to_list_msvc.hpp
  460. include/msgpack/preprocessor/seq/elem.hpp
  461. include/msgpack/preprocessor/seq/enum.hpp
  462. include/msgpack/preprocessor/seq/filter.hpp
  463. include/msgpack/preprocessor/seq/first_n.hpp
  464. include/msgpack/preprocessor/seq/fold_left.hpp
  465. include/msgpack/preprocessor/seq/fold_right.hpp
  466. include/msgpack/preprocessor/seq/for_each.hpp
  467. include/msgpack/preprocessor/seq/for_each_i.hpp
  468. include/msgpack/preprocessor/seq/for_each_product.hpp
  469. include/msgpack/preprocessor/seq/insert.hpp
  470. include/msgpack/preprocessor/seq/pop_back.hpp
  471. include/msgpack/preprocessor/seq/pop_front.hpp
  472. include/msgpack/preprocessor/seq/push_back.hpp
  473. include/msgpack/preprocessor/seq/push_front.hpp
  474. include/msgpack/preprocessor/seq/remove.hpp
  475. include/msgpack/preprocessor/seq/replace.hpp
  476. include/msgpack/preprocessor/seq/rest_n.hpp
  477. include/msgpack/preprocessor/seq/reverse.hpp
  478. include/msgpack/preprocessor/seq/seq.hpp
  479. include/msgpack/preprocessor/seq/size.hpp
  480. include/msgpack/preprocessor/seq/subseq.hpp
  481. include/msgpack/preprocessor/seq/to_array.hpp
  482. include/msgpack/preprocessor/seq/to_list.hpp
  483. include/msgpack/preprocessor/seq/to_tuple.hpp
  484. include/msgpack/preprocessor/seq/transform.hpp
  485. include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp
  486. include/msgpack/preprocessor/slot.hpp
  487. include/msgpack/preprocessor/slot/counter.hpp
  488. include/msgpack/preprocessor/slot/detail/counter.hpp
  489. include/msgpack/preprocessor/slot/detail/def.hpp
  490. include/msgpack/preprocessor/slot/detail/shared.hpp
  491. include/msgpack/preprocessor/slot/detail/slot1.hpp
  492. include/msgpack/preprocessor/slot/detail/slot2.hpp
  493. include/msgpack/preprocessor/slot/detail/slot3.hpp
  494. include/msgpack/preprocessor/slot/detail/slot4.hpp
  495. include/msgpack/preprocessor/slot/detail/slot5.hpp
  496. include/msgpack/preprocessor/slot/slot.hpp
  497. include/msgpack/preprocessor/stringize.hpp
  498. include/msgpack/preprocessor/tuple.hpp
  499. include/msgpack/preprocessor/tuple/detail/is_single_return.hpp
  500. include/msgpack/preprocessor/tuple/eat.hpp
  501. include/msgpack/preprocessor/tuple/elem.hpp
  502. include/msgpack/preprocessor/tuple/enum.hpp
  503. include/msgpack/preprocessor/tuple/insert.hpp
  504. include/msgpack/preprocessor/tuple/pop_back.hpp
  505. include/msgpack/preprocessor/tuple/pop_front.hpp
  506. include/msgpack/preprocessor/tuple/push_back.hpp
  507. include/msgpack/preprocessor/tuple/push_front.hpp
  508. include/msgpack/preprocessor/tuple/rem.hpp
  509. include/msgpack/preprocessor/tuple/remove.hpp
  510. include/msgpack/preprocessor/tuple/replace.hpp
  511. include/msgpack/preprocessor/tuple/reverse.hpp
  512. include/msgpack/preprocessor/tuple/size.hpp
  513. include/msgpack/preprocessor/tuple/to_array.hpp
  514. include/msgpack/preprocessor/tuple/to_list.hpp
  515. include/msgpack/preprocessor/tuple/to_seq.hpp
  516. include/msgpack/preprocessor/variadic.hpp
  517. include/msgpack/preprocessor/variadic/detail/is_single_return.hpp
  518. include/msgpack/preprocessor/variadic/elem.hpp
  519. include/msgpack/preprocessor/variadic/size.hpp
  520. include/msgpack/preprocessor/variadic/to_array.hpp
  521. include/msgpack/preprocessor/variadic/to_list.hpp
  522. include/msgpack/preprocessor/variadic/to_seq.hpp
  523. include/msgpack/preprocessor/variadic/to_tuple.hpp
  524. include/msgpack/preprocessor/while.hpp
  525. include/msgpack/preprocessor/wstringize.hpp
  526. include/msgpack/sbuffer.hpp
  527. include/msgpack/sbuffer_decl.hpp
  528. include/msgpack/type.hpp
  529. include/msgpack/unpack.hpp
  530. include/msgpack/unpack_decl.hpp
  531. include/msgpack/unpack_exception.hpp
  532. include/msgpack/v1/adaptor/adaptor_base.hpp
  533. include/msgpack/v1/adaptor/adaptor_base_decl.hpp
  534. include/msgpack/v1/adaptor/array_ref.hpp
  535. include/msgpack/v1/adaptor/array_ref_decl.hpp
  536. include/msgpack/v1/adaptor/bool.hpp
  537. include/msgpack/v1/adaptor/boost/fusion.hpp
  538. include/msgpack/v1/adaptor/boost/msgpack_variant.hpp
  539. include/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp
  540. include/msgpack/v1/adaptor/boost/optional.hpp
  541. include/msgpack/v1/adaptor/boost/string_ref.hpp
  542. include/msgpack/v1/adaptor/boost/string_view.hpp
  543. include/msgpack/v1/adaptor/carray.hpp
  544. include/msgpack/v1/adaptor/char_ptr.hpp
  545. include/msgpack/v1/adaptor/check_container_size.hpp
  546. include/msgpack/v1/adaptor/check_container_size_decl.hpp
  547. include/msgpack/v1/adaptor/cpp11/array.hpp
  548. include/msgpack/v1/adaptor/cpp11/array_char.hpp
  549. include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp
  550. include/msgpack/v1/adaptor/cpp11/chrono.hpp
  551. include/msgpack/v1/adaptor/cpp11/forward_list.hpp
  552. include/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp
  553. include/msgpack/v1/adaptor/cpp11/shared_ptr.hpp
  554. include/msgpack/v1/adaptor/cpp11/tuple.hpp
  555. include/msgpack/v1/adaptor/cpp11/unique_ptr.hpp
  556. include/msgpack/v1/adaptor/cpp11/unordered_map.hpp
  557. include/msgpack/v1/adaptor/cpp11/unordered_set.hpp
  558. include/msgpack/v1/adaptor/cpp17/byte.hpp
  559. include/msgpack/v1/adaptor/cpp17/carray_byte.hpp
  560. include/msgpack/v1/adaptor/cpp17/optional.hpp
  561. include/msgpack/v1/adaptor/cpp17/string_view.hpp
  562. include/msgpack/v1/adaptor/cpp17/vector_byte.hpp
  563. include/msgpack/v1/adaptor/define.hpp
  564. include/msgpack/v1/adaptor/define_decl.hpp
  565. include/msgpack/v1/adaptor/deque.hpp
  566. include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp
  567. include/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp
  568. include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp
  569. include/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp
  570. include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp
  571. include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
  572. include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp
  573. include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp
  574. include/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp
  575. include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp
  576. include/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp
  577. include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp
  578. include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
  579. include/msgpack/v1/adaptor/ext.hpp
  580. include/msgpack/v1/adaptor/ext_decl.hpp
  581. include/msgpack/v1/adaptor/fixint.hpp
  582. include/msgpack/v1/adaptor/fixint_decl.hpp
  583. include/msgpack/v1/adaptor/float.hpp
  584. include/msgpack/v1/adaptor/int.hpp
  585. include/msgpack/v1/adaptor/int_decl.hpp
  586. include/msgpack/v1/adaptor/list.hpp
  587. include/msgpack/v1/adaptor/map.hpp
  588. include/msgpack/v1/adaptor/map_decl.hpp
  589. include/msgpack/v1/adaptor/msgpack_tuple.hpp
  590. include/msgpack/v1/adaptor/msgpack_tuple_decl.hpp
  591. include/msgpack/v1/adaptor/nil.hpp
  592. include/msgpack/v1/adaptor/nil_decl.hpp
  593. include/msgpack/v1/adaptor/pair.hpp
  594. include/msgpack/v1/adaptor/raw.hpp
  595. include/msgpack/v1/adaptor/raw_decl.hpp
  596. include/msgpack/v1/adaptor/set.hpp
  597. include/msgpack/v1/adaptor/size_equal_only.hpp
  598. include/msgpack/v1/adaptor/size_equal_only_decl.hpp
  599. include/msgpack/v1/adaptor/string.hpp
  600. include/msgpack/v1/adaptor/tr1/unordered_map.hpp
  601. include/msgpack/v1/adaptor/tr1/unordered_set.hpp
  602. include/msgpack/v1/adaptor/v4raw.hpp
  603. include/msgpack/v1/adaptor/v4raw_decl.hpp
  604. include/msgpack/v1/adaptor/vector.hpp
  605. include/msgpack/v1/adaptor/vector_bool.hpp
  606. include/msgpack/v1/adaptor/vector_char.hpp
  607. include/msgpack/v1/adaptor/vector_unsigned_char.hpp
  608. include/msgpack/v1/cpp_config.hpp
  609. include/msgpack/v1/cpp_config_decl.hpp
  610. include/msgpack/v1/detail/cpp03_zone.hpp
  611. include/msgpack/v1/detail/cpp03_zone_decl.hpp
  612. include/msgpack/v1/detail/cpp11_zone.hpp
  613. include/msgpack/v1/detail/cpp11_zone_decl.hpp
  614. include/msgpack/v1/fbuffer.hpp
  615. include/msgpack/v1/fbuffer_decl.hpp
  616. include/msgpack/v1/iterator.hpp
  617. include/msgpack/v1/iterator_decl.hpp
  618. include/msgpack/v1/meta.hpp
  619. include/msgpack/v1/meta_decl.hpp
  620. include/msgpack/v1/object.hpp
  621. include/msgpack/v1/object_decl.hpp
  622. include/msgpack/v1/object_fwd.hpp
  623. include/msgpack/v1/object_fwd_decl.hpp
  624. include/msgpack/v1/pack.hpp
  625. include/msgpack/v1/pack_decl.hpp
  626. include/msgpack/v1/parse_return.hpp
  627. include/msgpack/v1/preprocessor.hpp
  628. include/msgpack/v1/sbuffer.hpp
  629. include/msgpack/v1/sbuffer_decl.hpp
  630. include/msgpack/v1/unpack.hpp
  631. include/msgpack/v1/unpack_decl.hpp
  632. include/msgpack/v1/unpack_exception.hpp
  633. include/msgpack/v1/version.hpp
  634. include/msgpack/v1/versioning.hpp
  635. include/msgpack/v1/vrefbuffer.hpp
  636. include/msgpack/v1/vrefbuffer_decl.hpp
  637. include/msgpack/v1/zbuffer.hpp
  638. include/msgpack/v1/zbuffer_decl.hpp
  639. include/msgpack/v1/zone.hpp
  640. include/msgpack/v1/zone_decl.hpp
  641. include/msgpack/v2/adaptor/adaptor_base.hpp
  642. include/msgpack/v2/adaptor/adaptor_base_decl.hpp
  643. include/msgpack/v2/adaptor/array_ref_decl.hpp
  644. include/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp
  645. include/msgpack/v2/adaptor/check_container_size_decl.hpp
  646. include/msgpack/v2/adaptor/define_decl.hpp
  647. include/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp
  648. include/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp
  649. include/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
  650. include/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp
  651. include/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp
  652. include/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
  653. include/msgpack/v2/adaptor/ext_decl.hpp
  654. include/msgpack/v2/adaptor/fixint_decl.hpp
  655. include/msgpack/v2/adaptor/int_decl.hpp
  656. include/msgpack/v2/adaptor/map_decl.hpp
  657. include/msgpack/v2/adaptor/msgpack_tuple_decl.hpp
  658. include/msgpack/v2/adaptor/nil_decl.hpp
  659. include/msgpack/v2/adaptor/raw_decl.hpp
  660. include/msgpack/v2/adaptor/size_equal_only_decl.hpp
  661. include/msgpack/v2/adaptor/v4raw_decl.hpp
  662. include/msgpack/v2/cpp_config_decl.hpp
  663. include/msgpack/v2/create_object_visitor.hpp
  664. include/msgpack/v2/create_object_visitor_decl.hpp
  665. include/msgpack/v2/detail/cpp03_zone_decl.hpp
  666. include/msgpack/v2/detail/cpp11_zone_decl.hpp
  667. include/msgpack/v2/fbuffer_decl.hpp
  668. include/msgpack/v2/iterator_decl.hpp
  669. include/msgpack/v2/meta_decl.hpp
  670. include/msgpack/v2/null_visitor.hpp
  671. include/msgpack/v2/null_visitor_decl.hpp
  672. include/msgpack/v2/object.hpp
  673. include/msgpack/v2/object_decl.hpp
  674. include/msgpack/v2/object_fwd.hpp
  675. include/msgpack/v2/object_fwd_decl.hpp
  676. include/msgpack/v2/pack_decl.hpp
  677. include/msgpack/v2/parse.hpp
  678. include/msgpack/v2/parse_decl.hpp
  679. include/msgpack/v2/parse_return.hpp
  680. include/msgpack/v2/sbuffer_decl.hpp
  681. include/msgpack/v2/unpack.hpp
  682. include/msgpack/v2/unpack_decl.hpp
  683. include/msgpack/v2/vrefbuffer_decl.hpp
  684. include/msgpack/v2/x3_parse.hpp
  685. include/msgpack/v2/x3_parse_decl.hpp
  686. include/msgpack/v2/x3_unpack.hpp
  687. include/msgpack/v2/x3_unpack_decl.hpp
  688. include/msgpack/v2/zbuffer_decl.hpp
  689. include/msgpack/v2/zone_decl.hpp
  690. include/msgpack/v3/adaptor/adaptor_base.hpp
  691. include/msgpack/v3/adaptor/adaptor_base_decl.hpp
  692. include/msgpack/v3/adaptor/array_ref_decl.hpp
  693. include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp
  694. include/msgpack/v3/adaptor/check_container_size_decl.hpp
  695. include/msgpack/v3/adaptor/define_decl.hpp
  696. include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp
  697. include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp
  698. include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
  699. include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp
  700. include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp
  701. include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
  702. include/msgpack/v3/adaptor/ext_decl.hpp
  703. include/msgpack/v3/adaptor/fixint_decl.hpp
  704. include/msgpack/v3/adaptor/int_decl.hpp
  705. include/msgpack/v3/adaptor/map_decl.hpp
  706. include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp
  707. include/msgpack/v3/adaptor/nil_decl.hpp
  708. include/msgpack/v3/adaptor/raw_decl.hpp
  709. include/msgpack/v3/adaptor/size_equal_only_decl.hpp
  710. include/msgpack/v3/adaptor/v4raw_decl.hpp
  711. include/msgpack/v3/cpp_config_decl.hpp
  712. include/msgpack/v3/create_object_visitor_decl.hpp
  713. include/msgpack/v3/detail/cpp03_zone_decl.hpp
  714. include/msgpack/v3/detail/cpp11_zone_decl.hpp
  715. include/msgpack/v3/fbuffer_decl.hpp
  716. include/msgpack/v3/iterator_decl.hpp
  717. include/msgpack/v3/meta_decl.hpp
  718. include/msgpack/v3/null_visitor_decl.hpp
  719. include/msgpack/v3/object_decl.hpp
  720. include/msgpack/v3/object_fwd.hpp
  721. include/msgpack/v3/object_fwd_decl.hpp
  722. include/msgpack/v3/pack_decl.hpp
  723. include/msgpack/v3/parse.hpp
  724. include/msgpack/v3/parse_decl.hpp
  725. include/msgpack/v3/parse_return.hpp
  726. include/msgpack/v3/sbuffer_decl.hpp
  727. include/msgpack/v3/unpack.hpp
  728. include/msgpack/v3/unpack_decl.hpp
  729. include/msgpack/v3/vrefbuffer_decl.hpp
  730. include/msgpack/v3/x3_parse_decl.hpp
  731. include/msgpack/v3/x3_unpack.hpp
  732. include/msgpack/v3/x3_unpack_decl.hpp
  733. include/msgpack/v3/zbuffer_decl.hpp
  734. include/msgpack/v3/zone_decl.hpp
  735. include/msgpack/version.hpp
  736. include/msgpack/versioning.hpp
  737. include/msgpack/vrefbuffer.hpp
  738. include/msgpack/vrefbuffer_decl.hpp
  739. include/msgpack/x3_parse.hpp
  740. include/msgpack/x3_parse_decl.hpp
  741. include/msgpack/x3_unpack.hpp
  742. include/msgpack/x3_unpack_decl.hpp
  743. include/msgpack/zbuffer.hpp
  744. include/msgpack/zbuffer_decl.hpp
  745. include/msgpack/zone.hpp
  746. include/msgpack/zone_decl.hpp
  747. )
  748. ENDIF ()