osb/cmake/FindSteamApi.cmake

17 lines
356 B
CMake
Raw Normal View History

2023-06-20 04:33:09 +00:00
# Variables defined by this module:
#
# STEAM_API_LIBRARY The steam api library
# STEAM_API_INCLUDE_DIR The location of steam api headers
find_library(STEAM_API_LIBRARY
2024-03-08 09:09:27 +00:00
NAMES libsteam_api steam_api steam_api64
2023-06-20 04:33:09 +00:00
)
find_path(STEAM_API_INCLUDE_DIR
2024-03-08 09:09:27 +00:00
steam/steam_api.h
2023-06-20 04:33:09 +00:00
)
mark_as_advanced(
STEAM_API_LIBRARY
STEAM_API_INCLUDE_DIR
)