Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlazydodo <github@lazydodo.com>2016-08-24 18:37:42 +0300
committerlazydodo <github@lazydodo.com>2016-08-24 18:37:42 +0300
commitbfc5a94292bb6044e6f95d56d896ad2231e685e7 (patch)
tree95628874e91c8958f323ba2a7c946e20cbf075e7 /build_files
parent438bcc6d28e975bbefae6f86f21824f9feed0b6c (diff)
Windows Packaging : Make package-name confirm to the windows[32/64] naming scheme we use.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/packaging.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/packaging.cmake b/build_files/cmake/packaging.cmake
index 72f10bb5705..bc1d64f7494 100644
--- a/build_files/cmake/packaging.cmake
+++ b/build_files/cmake/packaging.cmake
@@ -40,9 +40,9 @@ execute_process(COMMAND date "+%Y%m%d" OUTPUT_VARIABLE CPACK_DATE OUTPUT_STRIP_T
string(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
if (MSVC)
if ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
- set(PACKAGE_ARCH Win64)
+ set(PACKAGE_ARCH windows64)
else()
- set(PACKAGE_ARCH Win32)
+ set(PACKAGE_ARCH windows32)
endif()
else(MSVC)
set(PACKAGE_ARCH ${CMAKE_SYSTEM_PROCESSOR})