mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Upgrade msvc to include enet and qt translator (#1436)
- Updated MSVC prebuilt package - Fixed build warnings
This commit is contained in:
parent
fc4121f5ec
commit
0a858d9a7c
@ -1,10 +1,10 @@
|
|||||||
curl -LfsS -o "vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v140.7z" \
|
curl -LfsS -o "vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v143.7z" \
|
||||||
"https://github.com/vcmi/vcmi-deps-windows/releases/download/v1.5/vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v140.7z"
|
"https://github.com/vcmi/vcmi-deps-windows/releases/download/v1.6/vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v143.7z"
|
||||||
7z x "vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v140.7z"
|
7z x "vcpkg-export-${VCMI_BUILD_PLATFORM}-windows-v143.7z"
|
||||||
|
|
||||||
rm -r -f vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug
|
#rm -r -f vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug
|
||||||
mkdir -p vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug/bin
|
#mkdir -p vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug/bin
|
||||||
cp vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/bin/* vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug/bin
|
#cp vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/bin/* vcpkg/installed/${VCMI_BUILD_PLATFORM}-windows/debug/bin
|
||||||
|
|
||||||
DUMPBIN_DIR=$(vswhere -latest -find **/dumpbin.exe | head -n 1)
|
DUMPBIN_DIR=$(vswhere -latest -find **/dumpbin.exe | head -n 1)
|
||||||
dirname "$DUMPBIN_DIR" > $GITHUB_PATH
|
dirname "$DUMPBIN_DIR" > $GITHUB_PATH
|
||||||
|
@ -232,7 +232,7 @@ if(MINGW OR MSVC)
|
|||||||
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4800") # 4800: implicit conversion from 'xxx' to bool. Possible information loss
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4800") # 4800: implicit conversion from 'xxx' to bool. Possible information loss
|
||||||
|
|
||||||
if(ENABLE_STRICT_COMPILATION)
|
if(ENABLE_STRICT_COMPILATION)
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wx") # Treats all compiler warnings as errors
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX") # Treats all compiler warnings as errors
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ENABLE_MULTI_PROCESS_BUILDS)
|
if(ENABLE_MULTI_PROCESS_BUILDS)
|
||||||
|
@ -232,7 +232,7 @@ if(WIN32)
|
|||||||
add_custom_command(TARGET vcmiclient POST_BUILD
|
add_custom_command(TARGET vcmiclient POST_BUILD
|
||||||
WORKING_DIRECTORY "$<TARGET_FILE_DIR:vcmiclient>"
|
WORKING_DIRECTORY "$<TARGET_FILE_DIR:vcmiclient>"
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy AI/fuzzylite.dll fuzzylite.dll
|
COMMAND ${CMAKE_COMMAND} -E copy AI/fuzzylite.dll fuzzylite.dll
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy AI/tbb.dll tbb.dll
|
COMMAND ${CMAKE_COMMAND} -E copy AI/tbb12.dll tbb12.dll
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
elseif(APPLE_IOS)
|
elseif(APPLE_IOS)
|
||||||
|
@ -83,10 +83,10 @@ BattleStacksController::BattleStacksController(BattleInterface & owner):
|
|||||||
amountNegative = IImage::createFromFile("CMNUMWIN.BMP");
|
amountNegative = IImage::createFromFile("CMNUMWIN.BMP");
|
||||||
amountEffNeutral = IImage::createFromFile("CMNUMWIN.BMP");
|
amountEffNeutral = IImage::createFromFile("CMNUMWIN.BMP");
|
||||||
|
|
||||||
static const auto shifterNormal = ColorFilter::genRangeShifter( 0,0,0, 0.6, 0.2, 1.0 );
|
static const auto shifterNormal = ColorFilter::genRangeShifter( 0.f, 0.f, 0.f, 0.6f, 0.2f, 1.0f );
|
||||||
static const auto shifterPositive = ColorFilter::genRangeShifter( 0,0,0, 0.2, 1.0, 0.2 );
|
static const auto shifterPositive = ColorFilter::genRangeShifter( 0.f, 0.f, 0.f, 0.2f, 1.0f, 0.2f );
|
||||||
static const auto shifterNegative = ColorFilter::genRangeShifter( 0,0,0, 1.0, 0.2, 0.2 );
|
static const auto shifterNegative = ColorFilter::genRangeShifter( 0.f, 0.f, 0.f, 1.0f, 0.2f, 0.2f );
|
||||||
static const auto shifterNeutral = ColorFilter::genRangeShifter( 0,0,0, 1.0, 1.0, 0.2 );
|
static const auto shifterNeutral = ColorFilter::genRangeShifter( 0.f, 0.f, 0.f, 1.0f, 1.0f, 0.2f );
|
||||||
|
|
||||||
amountNormal->adjustPalette(shifterNormal);
|
amountNormal->adjustPalette(shifterNormal);
|
||||||
amountPositive->adjustPalette(shifterPositive);
|
amountPositive->adjustPalette(shifterPositive);
|
||||||
|
@ -156,7 +156,7 @@ static void detectEncoding()
|
|||||||
auto data = resource->readAll();
|
auto data = resource->readAll();
|
||||||
|
|
||||||
// compute how often each character occurs in input file
|
// compute how often each character occurs in input file
|
||||||
for (size_t i = 0; i < data.second; ++i)
|
for (si64 i = 0; i < data.second; ++i)
|
||||||
charCount[data.first[i]] += 1;
|
charCount[data.first[i]] += 1;
|
||||||
|
|
||||||
// and convert computed data into weights
|
// and convert computed data into weights
|
||||||
|
Loading…
Reference in New Issue
Block a user