From 13c30c2607e855bbf84796e31c5fc3dd8b6484f8 Mon Sep 17 00:00:00 2001 From: Sascha Kratky Date: Thu, 15 Mar 2012 20:12:28 +0100 Subject: [PATCH] cotire 1.0.1 * Cotire manual corrections. * Add prefix header to the generated unity build target. --- CMake/cotire.cmake | 4 +++- HISTORY.md | 7 ++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CMake/cotire.cmake b/CMake/cotire.cmake index ff3beee..e1696df 100644 --- a/CMake/cotire.cmake +++ b/CMake/cotire.cmake @@ -36,7 +36,7 @@ set(__COTIRE_INCLUDED TRUE) cmake_minimum_required(VERSION 2.8.5) set (COTIRE_CMAKE_MODULE_FILE "${CMAKE_CURRENT_LIST_FILE}") -set (COTIRE_CMAKE_MODULE_VERSION "1.0.0") +set (COTIRE_CMAKE_MODULE_VERSION "1.0.1") include(CMakeParseArguments) @@ -1941,6 +1941,8 @@ function (cotire_setup_unity_build_target _languages _configurations _target) ${_language} "" "${_prefixFile}" "${_pchFile}" ${_unityFiles}) cotire_setup_prefix_file_inclusion( ${_language} ${_target} FALSE "${_prefixFile}" "${_pchFile}" ${_unityFiles}) + # add the prefix header to unity target sources + list (APPEND _unityTargetSources "${_prefixFile}") endif() endif() endif() diff --git a/HISTORY.md b/HISTORY.md index 52b21a8..3c1459a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +## 1.0.1 (2012-03-15) + +* Cotire manual corrections. +* Add prefix header to the generated unity build target. + ## 1.0.0 (2012-03-11) -* First release +* First release.