mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
13 lines
499 B
CMake
13 lines
499 B
CMake
#
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
# Created by Clement Brisset on 6/8/2016
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(TARGET_STEAMWORKS)
|
|
add_dependency_external_projects(steamworks)
|
|
find_package(Steamworks REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${STEAMWORKS_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${STEAMWORKS_LIBRARIES})
|
|
endmacro()
|