From ccd2732e8c11d33cddb6b43ce4e9850dc70fbbac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 6 May 2020 13:49:37 +0200 Subject: [PATCH] Cable 0.5.0 --- README.md | 11 +++++++++++ bootstrap.cmake | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a54d28e..def365a 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,17 @@ independent and it is easy to use them individually. The suggested Cable location is `cmake/cable` relative to your project root directory. + +### With cable.cmake script + +Copy [cable.cmake](cable.cmake) script to your project. +Then use it to download individual Cable CMake modules. + +```bash +./cable.cmake install CableBuildType +``` + + ### As git subtree Adding a dependency project as a [git subtree] is just a copy of the source code diff --git a/bootstrap.cmake b/bootstrap.cmake index 39ec92a..47dcdf1 100644 --- a/bootstrap.cmake +++ b/bootstrap.cmake @@ -1,5 +1,5 @@ -# Cable: CMake Bootstrap Library. -# Copyright 2019 Pawel Bylica. +# Cable: CMake Bootstrap Library +# Copyright 2019-2020 Pawel Bylica. # Licensed under the Apache License, Version 2.0. # Bootstrap the Cable - CMake Bootstrap Library by including this file. @@ -10,7 +10,7 @@ # # This is internal variable automatically updated with external tools. # Use CABLE_VERSION variable if you need this information. -set(version 0.4.4) +set(version 0.5.0) # For convenience, add the project CMake module dir to module path. set(module_dir ${CMAKE_CURRENT_SOURCE_DIR}/cmake)