[Cmake-commits] CMake branch, next, updated. v2.8.4-1905-g60bacbe
David Cole
david.cole at kitware.com
Fri Jul 22 17:07:06 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 60bacbe2b40847af1e81e62a26c0486a94c25f8d (commit)
via bb3a4381bb252ce05f2bb5e9b8f7f706a28ddf21 (commit)
via 528262365816923ba7caca6a3c3d870a94ba7061 (commit)
via 3c33c5c5c24e69e19c166d62ca1dc75c79ec5fd7 (commit)
via c2deeae469296ee4ed30066022a4f85df519e727 (commit)
via 9923a2a2d5a768dcddfc1e6025c1d7aad0f0bbcc (commit)
from 0e31b654a93ddf29930ce5be2020853220000917 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=60bacbe2b40847af1e81e62a26c0486a94c25f8d
commit 60bacbe2b40847af1e81e62a26c0486a94c25f8d
Merge: 0e31b65 bb3a438
Author: David Cole <david.cole at kitware.com>
AuthorDate: Fri Jul 22 17:06:56 2011 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jul 22 17:06:56 2011 -0400
Merge topic 'search-for-aspell' into next
bb3a438 Search for the ASPELL executable
5282623 KWSys Nightly Date Stamp
3c33c5c KWSys Nightly Date Stamp
c2deeae KWSys Nightly Date Stamp
9923a2a KWSys Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bb3a4381bb252ce05f2bb5e9b8f7f706a28ddf21
commit bb3a4381bb252ce05f2bb5e9b8f7f706a28ddf21
Author: Arnaud Gelas <arnaud_gelas at hms.harvard.edu>
AuthorDate: Thu Jun 30 12:38:07 2011 -0400
Commit: David Cole <david.cole at kitware.com>
CommitDate: Fri Jul 22 17:04:27 2011 -0400
Search for the ASPELL executable
diff --git a/Modules/FindASPELL.cmake b/Modules/FindASPELL.cmake
index d19fab4..713ab7e 100644
--- a/Modules/FindASPELL.cmake
+++ b/Modules/FindASPELL.cmake
@@ -2,6 +2,7 @@
# Once done this will define
#
# ASPELL_FOUND - system has ASPELL
+# ASPELL_EXECUTABLE - the ASPELL executable
# ASPELL_INCLUDE_DIR - the ASPELL include directory
# ASPELL_LIBRARIES - The libraries needed to use ASPELL
# ASPELL_DEFINITIONS - Compiler switches required for using ASPELL
@@ -22,11 +23,15 @@
FIND_PATH(ASPELL_INCLUDE_DIR aspell.h )
+FIND_PROGRAM(ASPELL_EXECUTABLE
+ NAMES aspell
+)
+
FIND_LIBRARY(ASPELL_LIBRARIES NAMES aspell aspell-15 libaspell-15 libaspell)
-# handle the QUIETLY and REQUIRED arguments and set ASPELL_FOUND to TRUE if
+# handle the QUIETLY and REQUIRED arguments and set ASPELL_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(ASPELL DEFAULT_MSG ASPELL_LIBRARIES ASPELL_INCLUDE_DIR)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(ASPELL DEFAULT_MSG ASPELL_LIBRARIES ASPELL_INCLUDE_DIR ASPELL_EXECUTABLE)
-MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES)
+MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES ASPELL_EXECUTABLE)
-----------------------------------------------------------------------
Summary of changes:
Modules/FindASPELL.cmake | 11 ++++++++---
Source/kwsys/kwsysDateStamp.cmake | 2 +-
2 files changed, 9 insertions(+), 4 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list