Skip to content

Commit

Permalink
Add runtime version 10.0.19041.746 and fix generation `cmake -G "Visu…
Browse files Browse the repository at this point in the history
…al Studio 16 2019" -A x64`.
  • Loading branch information
M3ikShizuka committed Feb 1, 2021
1 parent 9f24017 commit 58a654a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions RpcCore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 2 additions & 1 deletion RpcCore/RpcCore4_32bits/RpcInternals.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ static UINT64 RPC_CORE_RUNTIME_VERSION[] = {
0xA00004A610001LL, //10.0.19041.1
0xA00004A6101FCLL, //10.0.19041.508
0xA00004A610222LL, //10.0.19041.546
0xA00004A610276LL //10.0.19041.630
0xA00004A610276LL, //10.0.19041.630
0xA00004A6102EALL //10.0.19041.746
};

#ifdef _WIN64
Expand Down
3 changes: 2 additions & 1 deletion RpcCore/RpcCore4_64bits/RpcInternals.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ static UINT64 RPC_CORE_RUNTIME_VERSION[] = {
0xA00004A610001LL, //10.0.19041.1
0xA00004A6101FCLL, //10.0.19041.508
0xA00004A610222LL, //10.0.19041.546
0xA00004A610276LL //10.0.19041.630
0xA00004A610276LL, //10.0.19041.630
0xA00004A6102EALL //10.0.19041.746
};

#define RPC_CORE_DESCRIPTION "Windows 10 64bits runtime core"
Expand Down

0 comments on commit 58a654a

Please sign in to comment.