Browse Source

cotire 1.0.8

require CMake 2.8.6
master
Sascha Kratky 12 years ago
parent
commit
01195cc40c
3 changed files with 8 additions and 3 deletions
  1. +3
    -2
      CMake/cotire.cmake
  2. +4
    -0
      HISTORY.md
  3. +1
    -1
      README.md

+ 3
- 2
CMake/cotire.cmake View File

@@ -33,10 +33,11 @@ endif()
set(__COTIRE_INCLUDED TRUE)

# we need the CMake variables CMAKE_SCRIPT_MODE_FILE and CMAKE_ARGV available since 2.8.5
cmake_minimum_required(VERSION 2.8.5)
# we need APPEND_STRING option for set_property available since 2.8.6
cmake_minimum_required(VERSION 2.8.6)

set (COTIRE_CMAKE_MODULE_FILE "${CMAKE_CURRENT_LIST_FILE}")
set (COTIRE_CMAKE_MODULE_VERSION "1.0.7")
set (COTIRE_CMAKE_MODULE_VERSION "1.0.8")

include(CMakeParseArguments)



+ 4
- 0
HISTORY.md View File

@@ -1,3 +1,7 @@
## 1.0.7 (2012-04-05)

* require CMake 2.8.6 since we are using `set_property` option `APPEND_STRING`.

## 1.0.7 (2012-04-02)

* add support for Ninja generator introduced in CMake 2.8.8.


+ 1
- 1
README.md View File

@@ -26,7 +26,7 @@ features
requirements
------------

* [CMake 2.8.5][cmk] or newer. The executable `cmake` should be on the system path.
* [CMake 2.8.6][cmk] or newer. The executable `cmake` should be on the system path.
* [Visual Studio C++][vslstd], [MinGW][mingw] or [Cygwin][cgwn] under Windows.
* [GCC][gcc] under Linux.
* [Xcode][xcdt] developer tools package under OS X. This includes [Clang][clang].


Loading…
Cancel
Save