mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-20 07:20:36 +02:00
19 lines
No EOL
509 B
CMake
19 lines
No EOL
509 B
CMake
#
|
|
# AddPathsToLibPaths.cmake
|
|
# cmake/macros
|
|
#
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
# Created by Stephen Birarda on February 17, 2014
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
macro(ADD_PATHS_TO_LIB_PATHS)
|
|
foreach(_PATH ${ARGN})
|
|
set(TEMP_LIB_PATHS ${LIB_PATHS})
|
|
list(APPEND TEMP_LIB_PATHS ${_PATH})
|
|
|
|
set(LIB_PATHS ${TEMP_LIB_PATHS} CACHE TYPE LIST FORCE)
|
|
endforeach()
|
|
endmacro() |