Update rcheevos again. This time there are some files moving around.

This commit is contained in:
Henrik Rydgård 2023-10-14 14:52:12 +02:00
parent 1e6142d99b
commit 2c795e701f
8 changed files with 59 additions and 38 deletions

View File

@ -41,11 +41,12 @@
<ClInclude Include="..\..\ext\rcheevos\include\rc_runtime_types.h" />
<ClInclude Include="..\..\ext\rcheevos\include\rc_url.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rapi\rc_api_common.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_client_internal.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_compat.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rc_client_internal.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rc_compat.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rc_util.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rc_version.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_internal.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_validate.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_version.h" />
<ClInclude Include="..\..\ext\rcheevos\src\rhash\md5.h" />
</ItemGroup>
<ItemGroup>
@ -55,7 +56,6 @@
<ClCompile Include="..\..\ext\rcheevos\src\rapi\rc_api_runtime.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rapi\rc_api_user.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\alloc.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\compat.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\condition.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\condset.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\consoleinfo.c" />
@ -63,7 +63,9 @@
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\lboard.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\memref.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\operand.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\rc_client.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rc_compat.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rc_client.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rc_util.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\rc_validate.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\richpresence.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\runtime.c" />
@ -124,4 +126,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

View File

@ -40,7 +40,7 @@
<ClInclude Include="..\..\ext\rcheevos\src\rapi\rc_api_common.h">
<Filter>rapi</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_compat.h">
<ClInclude Include="..\..\ext\rcheevos\src\rc_compat.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_internal.h">
@ -49,13 +49,16 @@
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_validate.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_version.h">
<ClInclude Include="..\..\ext\rcheevos\src\rc_version.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rc_util.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rhash\md5.h">
<Filter>rhash</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\src\rcheevos\rc_client_internal.h">
<ClInclude Include="..\..\ext\rcheevos\src\rc_client_internal.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\..\ext\rcheevos\include\rc_client.h">
@ -95,7 +98,7 @@
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\alloc.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\compat.c">
<ClCompile Include="..\..\ext\rcheevos\src\rc_compat.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\condition.c">
@ -146,8 +149,11 @@
<ClCompile Include="..\..\ext\rcheevos\src\rhash\md5.c">
<Filter>rhash</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\rc_client.c">
<ClCompile Include="..\..\ext\rcheevos\src\rc_client.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
</ItemGroup>
</Project>
</Project>

View File

@ -120,7 +120,6 @@ RCHEEVOS_FILES := \
${SRC}/ext/rcheevos/src/rapi/rc_api_runtime.c \
${SRC}/ext/rcheevos/src/rapi/rc_api_user.c \
${SRC}/ext/rcheevos/src/rcheevos/alloc.c \
${SRC}/ext/rcheevos/src/rcheevos/compat.c \
${SRC}/ext/rcheevos/src/rcheevos/condition.c \
${SRC}/ext/rcheevos/src/rcheevos/condset.c \
${SRC}/ext/rcheevos/src/rcheevos/consoleinfo.c \
@ -128,7 +127,9 @@ RCHEEVOS_FILES := \
${SRC}/ext/rcheevos/src/rcheevos/lboard.c \
${SRC}/ext/rcheevos/src/rcheevos/memref.c \
${SRC}/ext/rcheevos/src/rcheevos/operand.c \
${SRC}/ext/rcheevos/src/rcheevos/rc_client.c \
${SRC}/ext/rcheevos/src/rc_client.c \
${SRC}/ext/rcheevos/src/rc_util.c \
${SRC}/ext/rcheevos/src/rc_compat.c \
${SRC}/ext/rcheevos/src/rcheevos/rc_validate.c \
${SRC}/ext/rcheevos/src/rcheevos/richpresence.c \
${SRC}/ext/rcheevos/src/rcheevos/runtime.c \

@ -1 +1 @@
Subproject commit 24dc84ca2dfbdbddebc9a26f4df225888e56a4f4
Subproject commit 0a1d19d04e4d34e0b9c1959dd34f81d3ab21b11d

View File

@ -14,7 +14,6 @@ set(ALL_SOURCE_FILES
${SRC_DIR}/rapi/rc_api_user.c
# rcheevos
${SRC_DIR}/rcheevos/alloc.c
${SRC_DIR}/rcheevos/compat.c
${SRC_DIR}/rcheevos/condition.c
${SRC_DIR}/rcheevos/condset.c
${SRC_DIR}/rcheevos/consoleinfo.c
@ -22,13 +21,17 @@ set(ALL_SOURCE_FILES
${SRC_DIR}/rcheevos/lboard.c
${SRC_DIR}/rcheevos/memref.c
${SRC_DIR}/rcheevos/operand.c
${SRC_DIR}/rcheevos/rc_compat.h
${SRC_DIR}/rcheevos/rc_client.c
${SRC_DIR}/rcheevos/rc_client_internal.h
${SRC_DIR}/rc_compat.h
${SRC_DIR}/rc_compat.h
${SRC_DIR}/rc_compat.c
${SRC_DIR}/rc_util.h
${SRC_DIR}/rc_util.c
${SRC_DIR}/rc_client.c
${SRC_DIR}/rc_client_internal.h
${SRC_DIR}/rc_version.h
${SRC_DIR}/rcheevos/rc_internal.h
${SRC_DIR}/rcheevos/rc_validate.h
${SRC_DIR}/rcheevos/rc_validate.c
${SRC_DIR}/rcheevos/rc_version.h
${SRC_DIR}/rcheevos/richpresence.c
${SRC_DIR}/rcheevos/runtime.c
${SRC_DIR}/rcheevos/runtime_progress.c

View File

@ -41,7 +41,6 @@
<ClCompile Include="..\rcheevos\src\rapi\rc_api_runtime.c" />
<ClCompile Include="..\rcheevos\src\rapi\rc_api_user.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\alloc.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\compat.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\condition.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\condset.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\consoleinfo.c" />
@ -49,13 +48,15 @@
<ClCompile Include="..\rcheevos\src\rcheevos\lboard.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\memref.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\operand.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\rc_client.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\rc_validate.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\richpresence.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\runtime.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\runtime_progress.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\trigger.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\value.c" />
<ClCompile Include="..\rcheevos\src\rc_client.c" />
<ClCompile Include="..\rcheevos\src\rc_compat.c" />
<ClCompile Include="..\rcheevos\src\rc_util.c" />
<ClCompile Include="..\rcheevos\src\rhash\cdreader.c" />
<ClCompile Include="..\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\rcheevos\src\rhash\md5.c" />
@ -75,11 +76,12 @@
<ClInclude Include="..\rcheevos\include\rc_runtime_types.h" />
<ClInclude Include="..\rcheevos\include\rc_url.h" />
<ClInclude Include="..\rcheevos\src\rapi\rc_api_common.h" />
<ClInclude Include="..\rcheevos\src\rcheevos\rc_client_internal.h" />
<ClInclude Include="..\rcheevos\src\rcheevos\rc_compat.h" />
<ClInclude Include="..\rcheevos\src\rcheevos\rc_internal.h" />
<ClInclude Include="..\rcheevos\src\rcheevos\rc_validate.h" />
<ClInclude Include="..\rcheevos\src\rcheevos\rc_version.h" />
<ClInclude Include="..\rcheevos\src\rc_client_internal.h" />
<ClInclude Include="..\rcheevos\src\rc_compat.h" />
<ClInclude Include="..\rcheevos\src\rc_util.h" />
<ClInclude Include="..\rcheevos\src\rc_version.h" />
<ClInclude Include="..\rcheevos\src\rhash\md5.h" />
</ItemGroup>
<PropertyGroup Label="Globals">

View File

@ -33,9 +33,6 @@
<ClCompile Include="..\rcheevos\src\rcheevos\alloc.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rcheevos\compat.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rcheevos\condition.c">
<Filter>rcheevos</Filter>
</ClCompile>
@ -84,7 +81,13 @@
<ClCompile Include="..\rcheevos\src\rhash\md5.c">
<Filter>rhash</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rcheevos\rc_client.c">
<ClCompile Include="..\rcheevos\src\rc_client.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rc_compat.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
</ItemGroup>
@ -128,25 +131,28 @@
<ClInclude Include="..\rcheevos\include\rcheevos.h">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rcheevos\rc_compat.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rcheevos\rc_internal.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rcheevos\rc_validate.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rcheevos\rc_version.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rhash\md5.h">
<Filter>rhash</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\include\rc_client.h">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rcheevos\rc_client_internal.h">
<ClInclude Include="..\rcheevos\src\rc_client_internal.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rc_version.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rc_compat.h">
<Filter>rcheevos</Filter>
</ClInclude>
<ClInclude Include="..\rcheevos\src\rc_util.h">
<Filter>rcheevos</Filter>
</ClInclude>
</ItemGroup>

View File

@ -204,7 +204,6 @@ SOURCES_C += \
$(EXTDIR)/rcheevos/src/rapi/rc_api_runtime.c \
$(EXTDIR)/rcheevos/src/rapi/rc_api_user.c \
$(EXTDIR)/rcheevos/src/rcheevos/alloc.c \
$(EXTDIR)/rcheevos/src/rcheevos/compat.c \
$(EXTDIR)/rcheevos/src/rcheevos/condition.c \
$(EXTDIR)/rcheevos/src/rcheevos/condset.c \
$(EXTDIR)/rcheevos/src/rcheevos/consoleinfo.c \
@ -212,7 +211,9 @@ SOURCES_C += \
$(EXTDIR)/rcheevos/src/rcheevos/lboard.c \
$(EXTDIR)/rcheevos/src/rcheevos/memref.c \
$(EXTDIR)/rcheevos/src/rcheevos/operand.c \
$(EXTDIR)/rcheevos/src/rcheevos/rc_client.c \
$(EXTDIR)/rcheevos/src/rc_client.c \
$(EXTDIR)/rcheevos/src/rc_util.c \
$(EXTDIR)/rcheevos/src/rc_compat.c \
$(EXTDIR)/rcheevos/src/rcheevos/rc_validate.c \
$(EXTDIR)/rcheevos/src/rcheevos/richpresence.c \
$(EXTDIR)/rcheevos/src/rcheevos/runtime.c \