From de92f5d8a767e5b872580e81f67a518e14ea11cd Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 22 Feb 2015 11:46:58 -0800 Subject: [PATCH 1/2] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 207a1b85..9b59facd 100644 --- a/README.rst +++ b/README.rst @@ -385,7 +385,7 @@ Documentation License --------------------- The `Format String Syntax -`_ +`_ section in the documentation is based on the one from Python `string module documentation `_ adapted for the current library. For this reason the documentation is From 4da1fa391e81c657e5ff8fdb98a7e04698a6c257 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Tue, 24 Feb 2015 17:31:30 +1100 Subject: [PATCH 2/2] Add an install command to the cmake file (to allow make install) --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9be0ff46..105c98f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -160,3 +160,7 @@ if (EXISTS .gitignore) set(CPACK_RESOURCE_FILE_README ${FORMAT_SOURCE_DIR}/README.rst) include(CPack) endif () + +# Install our targets +install(TARGETS format DESTINATION lib) +install(FILES format.h DESTINATION include)