aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/InstallMsgpack.cmake
Commit message (Collapse)AuthorAge
* deps: Remove shared libraries.Florian Walch2015-04-29
|
* CMake: Remove msgpack shared library in subdirectories.Florian Walch2014-12-11
|
* Use cmake --build instead of MakeRui Abreu Ferreira2014-11-14
| | | | | | | - If possble try to abstract away from Make, and use cmake --build - third-party still needs to find Make to build some components - Removed search for Make from CMakeLists.txt * for CMake < 3.0 --build has no color output
* third-party: avoid using `rm` in the install commandJohn Szakmeister2014-09-14
Also, the command was removing only .so versions of the library, and not the the `.dylib` under Mac OS X, and in a way that it would fail if the files weren't present. Instead, let's delegate to a CMake script--to get the portability--and use a glob to detect and remove the shared versions of the library. Hopefully, this will become unnecessary as msgpack's build becomes more full-featured, and we can just tell it to build the static version instead.