mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
15 lines
497 B
CMake
15 lines
497 B
CMake
#
|
|
# Copyright 2019 High Fidelity, Inc.
|
|
#
|
|
# 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_ARISTO)
|
|
|
|
if (WIN32)
|
|
target_include_directories(${TARGET_NAME} SYSTEM PUBLIC "${VCPKG_INSTALL_ROOT}/include")
|
|
find_library(ARISTO_LIBRARY NAMES aristo_interface PATHS ${VCPKG_INSTALL_ROOT}/lib/ NO_DEFAULT_PATH)
|
|
target_link_libraries(${TARGET_NAME} ${ARISTO_LIBRARY})
|
|
endif()
|
|
|
|
endmacro()
|