Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / external_libraries / yaml-cpp-0.3.0 / install.txt
blob939236249bfa22515d42abdfa2a84eff5aa2a96b
1 *** With CMake ***
3 yaml-cpp uses CMake to support cross-platform building. In a UNIX-like system, the basic steps to build are:
5 1. Download and install CMake (if you don't have root privileges, just install to a local directory, like ~/bin)
7 2. From the source directory, run:
9 mkdir build
10 cd build
11 cmake ..
13 and then the usual
15 make
16 make install
18 3. To clean up, just remove the 'build' directory.
20 *** Without CMake ***
22 If you don't want to use CMake, just add all .cpp files to a makefile. yaml-cpp does not need any special build settings, so no 'configure' file is necessary.
24 (Note: this is pretty tedious. It's sooo much easier to use CMake.)