diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-02-03 21:02:20 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-02-03 21:02:20 +0100 |
commit | 074dc9a550e110810bb62fb4c709811d29cd0c91 (patch) | |
tree | 3a9bc5e8b1fed69bf1a4fe82a1cfe7a7f4f2914e /win/packaging | |
parent | d99fbf4867db99b79385565f2b8ac9f164462240 (diff) | |
download | mariadb-git-074dc9a550e110810bb62fb4c709811d29cd0c91.tar.gz |
On Philips request, introduce a variable
BUILD_RELEASE to disable graceful fallbacks
if WiX or MFC is not available.
Diffstat (limited to 'win/packaging')
-rw-r--r-- | win/packaging/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/packaging/CMakeLists.txt b/win/packaging/CMakeLists.txt index c0670a171ba..8ba436a518e 100644 --- a/win/packaging/CMakeLists.txt +++ b/win/packaging/CMakeLists.txt @@ -40,6 +40,11 @@ IF(NOT WIX_DIR) IF(NOT _WIX_DIR_CHECKED) SET(_WIX_DIR_CHECKED 1 CACHE INTERNAL "") MESSAGE(STATUS "Cannot find wix 3, installer project will not be generated") + IF(BUILD_RELEASE) + MESSAGE(FATAL_ERROR + "Can't find Wix. It is necessary for producing official package" + ) + ENDIF() ENDIF() RETURN() ENDIF() |