Skip to content
Snippets Groups Projects
Commit cc6da6d6 authored by calrama's avatar calrama
Browse files

PACKAGE_WINDOWS_MSI -> PACKAGE_MSI

parent 0a754ce2
No related branches found
No related tags found
No related merge requests found
Pipeline #26922 passed
......@@ -88,7 +88,7 @@ def build(args):
'CMAKE_TOOLCHAIN_FILE',
env['VCPKG_DIR'] + '/scripts/buildsystems/vcpkg.cmake')
command += define('VCPKG_TARGET_TRIPLET', env['VCPKG_TRIPLET'])
command += define('PACKAGE_WINDOWS_MSI', 'ON')
command += define('PACKAGE_MSI', 'ON')
elif system() == 'Linux':
command += define('PACKAGE_TXZ', 'ON')
check_call(command)
......
......@@ -7,7 +7,7 @@ project(biotracker-background_subtraction_tracker
)
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
option(PACKAGE_WINDOWS_MSI "Create .msi package" OFF)
option(PACKAGE_MSI "Create MSI package" OFF)
endif()
option(PACKAGE_TXZ "Create .tar.xz package" OFF)
......@@ -40,7 +40,7 @@ set(CPACK_PACKAGE_NAME "BioTracker-Tracker-BackgroundSubtraction")
set(CPACK_PACKAGE_VENDOR "Biorobotics Lab / FU Berlin")
set(CPACK_PACKAGE_VERSION ${SOURCE_VERSION})
if(PACKAGE_WINDOWS_MSI)
if(PACKAGE_MSI)
set(CPACK_GENERATOR "WIX")
set(CPACK_WIX_UPGRADE_GUID "f9c5c38a-76c3-49a6-ab41-ddfdde7a2c87")
set(CPACK_WIX_PRODUCT_VERSION "0.0.0")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment