changeset 244:405f49532492

CMake: windows fix
author SokoL_SD
date Tue, 21 Jul 2009 13:50:09 +0000
parents e4cbe1e9ded6
children 2d061b52e077
files CMakeLists.txt
diffstat 1 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Mon Jul 20 10:03:56 2009 +0000
+++ b/CMakeLists.txt	Tue Jul 21 13:50:09 2009 +0000
@@ -78,7 +78,7 @@
     set(implib implib)
     find_program(IMPLIB ${implib})
     if (NOT IMPLIB)
-	message(FATAL_ERROR "implib not found. You can donwload it from http://ftp.digitalmars.com/bup.zip")
+	message(FATAL_ERROR "implib is not found. You can donwload it from http://ftp.digitalmars.com/bup.zip")
     endif (NOT IMPLIB)
     if(D_IS_MARS)
       set(GEN_OPT ${GEN_OPT} --cpp_shared)
@@ -139,7 +139,6 @@
 ##--------------------------------------------
 set(CPACK_PACKAGE_VERSION_PATCH 1)
 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "QtD is a D binding to the Qt application and UI framework. 
-QtD is a D binding to the Qt application and UI framework. 
 This package installs binding and static library for qt port on D programming language.
 ")
 SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/changelog.txt")
@@ -281,7 +280,7 @@
  
     if(RESOURCES_tmp)
 	if(NOT BUILD_TOOLS)
-	    message(STATUS "Example '${name}' required drcc. Example will not build")
+	    message(STATUS "Example '${name}' requires drcc. Example will not build")
 	    return(build_example name)
 	endif(NOT BUILD_TOOLS)
 	qtd_add_resource(res_sources ${RESOURCES_tmp} NAME ${name} )
@@ -289,7 +288,7 @@
 
     if(UIC_tmp)
 	if(NOT BUILD_TOOLS)
-	    message(STATUS "Example '${name}' require drcc. Example will not build")
+	    message(STATUS "Example '${name}' requires drcc. Example will not build")
 	    return(build_example name)
 	endif(NOT BUILD_TOOLS)
 	qtd_wrap_ui(uic_sources ${UIC_tmp})
@@ -306,7 +305,7 @@
 	    endif(${req} STREQUAL ${package_big})
 	endforeach(package_big ${packages_big})
 	if(NOT is_founded)
-	      message(STATUS "Example '${name}' require the package '${req}', but it is not active. Example will not build")
+	      message(STATUS "Example '${name}' requires the package '${req}', but it is not active. Example will not build")
 	      return(build_example name)
 	else(NOT is_founded)
 	      set(qtd_libs ${${package}_lib_param} ${qtd_libs})
@@ -369,9 +368,9 @@
 		    endif(${pack} STREQUAL ${req})
 		endforeach(pack ${all_packages})
 		if(req_found)
-		    message(STATUS "Package '${package_big}' require '${req}', but it is not active")
+		    message(STATUS "Package '${package_big}' requires '${req}', but it is not active")
 		else(req_found)
-		    message(STATUS "Package '${package_big}' require '${req}', but it is not found")
+		    message(STATUS "Package '${package_big}' requires '${req}', but it is not found")
 		endif(req_found)
 		set(all_req_found)
 	    endif(NOT req_found)
@@ -458,7 +457,7 @@
 		    endif("${pack}" STREQUAL "${req}")
 		endforeach(pack ${packages_big})
 		if(NOT is_found)
-		    message(FATAL_ERROR "Package ${package_big} require ${req}, but it is not found")
+		    message(FATAL_ERROR "Package ${package_big} requires ${req}, but it is not found")
 		endif(NOT is_found)
 		string(TOUPPER ${req} req_upper)
 		string(TOLOWER ${req} req_lower)