From 074dc9a550e110810bb62fb4c709811d29cd0c91 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Thu, 3 Feb 2011 21:02:20 +0100 Subject: On Philips request, introduce a variable BUILD_RELEASE to disable graceful fallbacks if WiX or MFC is not available. --- win/upgrade_wizard/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'win/upgrade_wizard') diff --git a/win/upgrade_wizard/CMakeLists.txt b/win/upgrade_wizard/CMakeLists.txt index fad67a207de..2e15087de43 100644 --- a/win/upgrade_wizard/CMakeLists.txt +++ b/win/upgrade_wizard/CMakeLists.txt @@ -9,8 +9,13 @@ ENDIF() # We need MFC FIND_PACKAGE(MFC) IF(NOT MFC_FOUND) + IF(BUILD_RELEASE) + MESSAGE(FATAL_ERROR + "Can't find MFC. It is necessary for producing official package" + ) + ENDIF() RETURN() -ENDIF() +ENDIF() # MFC should be statically linked SET(CMAKE_MFC_FLAG 1) -- cgit v1.2.1