overte-thingvellir/cmake/macros/AddPathsToLibPaths.cmake
2015-02-17 15:19:57 -08:00

18 lines
No EOL
507 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 in ${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()