overte-HifiExperiments/cmake/macros/AddPathsToLibPaths.cmake
2015-02-17 16:01:41 -08:00

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()