mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 11:04:00 +02:00
16 lines
No EOL
462 B
CMake
16 lines
No EOL
462 B
CMake
#
|
|
# AddPathToLibPaths.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_PATH_TO_LIB_PATHS _PATH)
|
|
set(TEMP_LIB_PATHS ${LIB_PATHS})
|
|
list(APPEND TEMP_LIB_PATHS ${_PATH})
|
|
set(LIB_PATHS ${TEMP_LIB_PATHS} CACHE TYPE LIST FORCE)
|
|
endmacro() |