diff --git a/RpcCore/CMakeLists.txt b/RpcCore/CMakeLists.txt index eea7194..7bf53e9 100644 --- a/RpcCore/CMakeLists.txt +++ b/RpcCore/CMakeLists.txt @@ -23,12 +23,12 @@ foreach(Files ${CoreFiles}) get_filename_component(Dir ${Files} NAME) - if(${CMAKE_GENERATOR} MATCHES "Win64") + if(${CMAKE_GENERATOR} MATCHES "Win64" OR ${CMAKE_GENERATOR_PLATFORM} MATCHES "x64") AddRpcCore(${Dir}) - else(${CMAKE_GENERATOR} MATCHES "Win64") + else(${CMAKE_GENERATOR} MATCHES "Win64" OR ${CMAKE_GENERATOR_PLATFORM} MATCHES "x64") if(${Dir} MATCHES "32bits") AddRpcCore(${Dir}) endif(${Dir} MATCHES "32bits") - endif(${CMAKE_GENERATOR} MATCHES "Win64") + endif(${CMAKE_GENERATOR} MATCHES "Win64" OR ${CMAKE_GENERATOR_PLATFORM} MATCHES "x64") endif (IS_DIRECTORY ${Files} ) endforeach(Files) \ No newline at end of file diff --git a/RpcCore/RpcCore4_32bits/RpcInternals.h b/RpcCore/RpcCore4_32bits/RpcInternals.h index 34722f2..28b0121 100644 --- a/RpcCore/RpcCore4_32bits/RpcInternals.h +++ b/RpcCore/RpcCore4_32bits/RpcInternals.h @@ -62,7 +62,8 @@ static UINT64 RPC_CORE_RUNTIME_VERSION[] = { 0xA00004A6101FCLL, //10.0.19041.508 0xA00004A610222LL, //10.0.19041.546 0xA00004A610276LL, //10.0.19041.630 - 0xA00004A610296LL, //10.0.19041.662 + 0xA00004A610296LL, //10.0.19041.662 + 0xA00004A6102EALL //10.0.19041.746 }; #ifdef _WIN64 diff --git a/RpcCore/RpcCore4_64bits/RpcInternals.h b/RpcCore/RpcCore4_64bits/RpcInternals.h index f663661..380558b 100644 --- a/RpcCore/RpcCore4_64bits/RpcInternals.h +++ b/RpcCore/RpcCore4_64bits/RpcInternals.h @@ -63,6 +63,7 @@ static UINT64 RPC_CORE_RUNTIME_VERSION[] = { 0xA00004A610222LL, //10.0.19041.546 0xA00004A610276LL, //10.0.19041.630 0xA00004A610296LL, //10.0.19041.662 + 0xA00004A6102EALL //10.0.19041.746 }; #define RPC_CORE_DESCRIPTION "Windows 10 64bits runtime core"