blob: 33b4dbb77b7f6ab6c2eb5da32081bd79c3beb162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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
NAMES libsteam_api steam_api steam_api64
)
find_path(STEAM_API_INCLUDE_DIR
steam/steam_api.h
)
mark_as_advanced(
STEAM_API_LIBRARY
STEAM_API_INCLUDE_DIR
)
|