mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
55 lines
2.2 KiB
CMake
55 lines
2.2 KiB
CMake
# Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
INCLUDE_DIRECTORIES(${WIX_DIR}/../SDK/inc ${WIX_DIR}/SDK/inc)
|
|
LINK_DIRECTORIES(${WIX_DIR}/../SDK/lib ${WIX_DIR}/SDK/lib)
|
|
|
|
SET(WIXCA_SOURCES CustomAction.cpp CustomAction.def)
|
|
|
|
IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
SET(WIX_ARCH_SUFFIX "_x64")
|
|
ELSE()
|
|
SET(WIX_ARCH_SUFFIX)
|
|
ENDIF()
|
|
|
|
IF(MSVC_VERSION EQUAL 1400)
|
|
SET(WIX35_MSVC_SUFFIX "_2005")
|
|
ELSEIF(MSVC_VERSION EQUAL 1500)
|
|
SET(WIX35_MSVC_SUFFIX "_2008")
|
|
ELSEIF(MSVC_VERSION EQUAL 1600)
|
|
SET(WIX35_MSVC_SUFFIX "_2010")
|
|
ELSE()
|
|
# When next VS is out, add the correct version here
|
|
MESSAGE(FATAL_ERROR "Unknown VS version")
|
|
ENDIF()
|
|
|
|
MESSAGE(STATUS "Searching for wcautil${WIX_ARCH_SUFFIX} or wcautil${WIX35_MSVC_SUFFIX}${WIX_ARCH_SUFFIX} in ${WIX_DIR}/../SDK/lib ${WIX_DIR}/SDK/lib")
|
|
MESSAGE(STATUS "Searching for dutil${WIX_ARCH_SUFFIX} or dutil${WIX35_MSVC_SUFFIX}${WIX_ARCH_SUFFIX} in ${WIX_DIR}/../SDK/lib ${WIX_DIR}/SDK/lib")
|
|
|
|
FIND_LIBRARY(WIX_WCAUTIL_LIBRARY
|
|
NAMES wcautil${WIX_ARCH_SUFFIX} wcautil${WIX35_MSVC_SUFFIX}${WIX_ARCH_SUFFIX}
|
|
HINTS ${WIX_DIR}/../SDK/lib ${WIX_DIR}/SDK/lib)
|
|
|
|
FIND_LIBRARY(WIX_DUTIL_LIBRARY
|
|
NAMES dutil${WIX_ARCH_SUFFIX} dutil${WIX35_MSVC_SUFFIX}${WIX_ARCH_SUFFIX}
|
|
PATHS ${WIX_DIR}/../SDK/lib ${WIX_DIR}/SDK/lib)
|
|
|
|
MESSAGE(STATUS "Found: ${WIX_WCAUTIL_LIBRARY}")
|
|
MESSAGE(STATUS "Found: ${WIX_DUTIL_LIBRARY}")
|
|
|
|
ADD_VERSION_INFO(wixca SHARED WIXCA_SOURCES)
|
|
ADD_LIBRARY(wixca SHARED EXCLUDE_FROM_ALL ${WIXCA_SOURCES})
|
|
TARGET_LINK_LIBRARIES(wixca ${WIX_WCAUTIL_LIBRARY} ${WIX_DUTIL_LIBRARY}
|
|
msi version )
|