mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Improve artifacts' stripping (#1286)
* add ton build on mac-15 gh action * rename action titles * fix https://github.com/ton-blockchain/ton/issues/1246 * improve artifacts' stripping * improve artifacts' stripping * use strip -xSX on mac on github runner * use strip -xSX on mac on github runner + sudo
This commit is contained in:
parent
c1ee18c902
commit
8daf5c335a
12 changed files with 128 additions and 40 deletions
|
@ -127,10 +127,16 @@ elseif (WIN32)
|
|||
endif()
|
||||
string(APPEND _PLATFORM_PATH "/$$CONFIG$$")
|
||||
|
||||
message(STATUS "MSVC_VERSION ${MSVC_VERSION}")
|
||||
if (MSVC_VERSION LESS 1900)
|
||||
math(EXPR _VS_VERSION "${MSVC_VERSION} / 10 - 60")
|
||||
else()
|
||||
math(EXPR _VS_VERSION "${MSVC_VERSION} / 10 - 50")
|
||||
if (MSVC_VERSION EQUAL 1941)
|
||||
math(EXPR _VS_VERSION "${MSVC_VERSION} / 10 - 51")
|
||||
else()
|
||||
math(EXPR _VS_VERSION "${MSVC_VERSION} / 10 - 50")
|
||||
endif()
|
||||
|
||||
endif()
|
||||
string(APPEND _PLATFORM_PATH "/v${_VS_VERSION}")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue