osb/cmake/FindSteamApi.cmake

17 lines
356 B
CMake
Raw Normal View History

2023-06-20 14:33:09 +10: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 20:09:27 +11:00
NAMES libsteam_api steam_api steam_api64
2023-06-20 14:33:09 +10:00
)
find_path(STEAM_API_INCLUDE_DIR
2024-03-08 20:09:27 +11:00
steam/steam_api.h
2023-06-20 14:33:09 +10:00
)
mark_as_advanced(
STEAM_API_LIBRARY
STEAM_API_INCLUDE_DIR
)