duckstation/dep/rcheevos/CMakeLists.txt

53 lines
1.3 KiB
CMake
Raw Normal View History

2021-02-21 06:58:40 +00:00
add_library(rcheevos
2023-11-06 09:41:10 +00:00
include/rcheevos.h
2022-07-18 12:46:12 +00:00
include/rc_api_editor.h
include/rc_api_info.h
include/rc_api_request.h
include/rc_api_runtime.h
include/rc_api_user.h
2023-11-06 09:41:10 +00:00
include/rc_client.h
2021-02-21 06:58:40 +00:00
include/rc_consoles.h
2021-06-21 17:00:14 +00:00
include/rc_error.h
2021-02-21 06:58:40 +00:00
include/rc_hash.h
2021-06-21 17:00:14 +00:00
include/rc_runtime.h
include/rc_runtime_types.h
2021-02-21 06:58:40 +00:00
include/rc_url.h
2024-02-24 04:52:57 +00:00
include/rc_util.h
2022-07-18 12:46:12 +00:00
src/rapi/rc_api_common.c
src/rapi/rc_api_common.h
src/rapi/rc_api_editor.c
src/rapi/rc_api_info.c
src/rapi/rc_api_runtime.c
src/rapi/rc_api_user.c
2021-02-21 06:58:40 +00:00
src/rcheevos/alloc.c
src/rcheevos/condition.c
src/rcheevos/condset.c
src/rcheevos/consoleinfo.c
src/rcheevos/format.c
src/rcheevos/lboard.c
src/rcheevos/memref.c
src/rcheevos/operand.c
src/rcheevos/rc_internal.h
2023-11-06 09:41:10 +00:00
src/rcheevos/rc_validate.c
src/rcheevos/rc_validate.h
2021-02-21 06:58:40 +00:00
src/rcheevos/richpresence.c
src/rcheevos/runtime.c
src/rcheevos/runtime_progress.c
src/rcheevos/trigger.c
src/rcheevos/value.c
2023-11-06 09:41:10 +00:00
src/rc_client.c
src/rc_client_internal.h
src/rc_compat.c
src/rc_compat.h
src/rc_util.c
src/rc_version.h
2021-02-21 06:58:40 +00:00
src/rhash/md5.c
src/rhash/md5.h
src/rurl/url.c
)
target_include_directories(rcheevos PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_include_directories(rcheevos INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_compile_definitions(rcheevos PRIVATE "RC_DISABLE_LUA=1" "RCHEEVOS_URL_SSL=1" "RC_NO_THREADS=1")
2021-02-21 06:58:40 +00:00