3 
4 
8 This is a port of the TypesafeConfig library to C++.
10 The library provides C++ support for the [HOCON configuration file format](https://github.com/typesafehub/config/blob/master/HOCON.md).
14 .====================.
15 MMMMMMMMMMMMMMMMMMMMMM
16 .MMMMMMMMMMMMMMMMMMMMMM.
17 ===.7MMMIN7NMMMMMMMMM7M=MMMM,===
18 MMM.7MM: DMMMMM7 :MMM=MMM
19 MMM.7MM, DMMMMM? ~MMM=MMM
20 MMM.7MMM~++~?MMMMMMM~++~MMMM=MMM
21 .MMMMMMMMMMMMMMMMMMMMMM.
22 MMMMMMMMMMMMMMMMMMMMMM
23 MMMMMMMMMMMMMMMMMMMMMM
25 MMMMMMMMMMMMMMMMMMMMMM
28 .MMMMMMMMMMMMMMMMMMMMMMMM
29 . MMMMMMMMMMMMM88MMMMMMMMMM8MM .
30 7=MMMMMMMM++ A CONFIG FILE ++M8MMMMMM7=
31 M=MMMMMMMM+ FORMAT DESIGNED +M8MMMMMM7M
32 M=MMMMMMMM++ FOR HUMANS ++M8MMMMMM7M
33 =MMMMMMMMMMMMMMMMM88MMMMMMMMMM8MMMMMM7
34 7MM.88MMMMMMMMMMM88MMMMMMMMMMO88 MM8
35 7MM MMMMMMMMMMM88MMMMMMMMMM8 MM8
36 7MM MMMMMMMMMMM88MMMMMMMMMM8 MM8
37 7MM MMMDMMMM?MM88MM?MMMMOMM8 MM8
42 This is a mostly complete implementation of the HOCON format. It currently has some known limitations
44 * Include requires the location specifier, i.e. `include "foo"` won't work but `include file("foo")` will. URL is not yet implemented, and classpath won't be supported as it makes less sense outside of the JVM.
45 * Unicode testing is absent so support is unknown. There are likely things that won't work.
51 * GCC >= 4.8 or Clang >= 3.4 (with libc++)
53 * Boost Libraries >= 1.54
54 * [Leatherman](https://github.com/puppetlabs/leatherman)
59 Prepare the cmake release environment:
66 Optionally, also prepare the debug environment:
70 $ cmake -DCMAKE_BUILD_TYPE=Debug ..
75 1. Enter your build environment of choice, i.e. `cd release` or `cd debug`
77 3. (optional) install with `make install`
81 Run tests with `make test`.