mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 00:23:34 +02:00
use MACRO_DIR variable to find glm in root externals dir
This commit is contained in:
parent
7fb52c529e
commit
b0ff960e37
3 changed files with 7 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
MACRO(INCLUDE_GLM TARGET)
|
||||
set(GLM_ROOT_DIR ../externals)
|
||||
MACRO(INCLUDE_GLM TARGET MACRO_DIR)
|
||||
set(GLM_ROOT_DIR ${MACRO_DIR}/../../externals)
|
||||
find_package(GLM REQUIRED)
|
||||
include_directories(${GLM_INCLUDE_DIRS})
|
||||
ENDMACRO(INCLUDE_GLM _target)
|
||||
ENDMACRO(INCLUDE_GLM _target _macro_dir)
|
|
@ -7,8 +7,9 @@ set(LODEPNG_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/LodePNG)
|
|||
set(PORTAUDIO_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/portaudio)
|
||||
|
||||
# set up the external glm library
|
||||
include(../cmake/macros/IncludeGLM.cmake)
|
||||
INCLUDE_GLM(interface)
|
||||
set(MACRO_DIR ../cmake/macros)
|
||||
include(${MACRO_DIR}/IncludeGLM.cmake)
|
||||
include_glm(interface ${MACRO_DIR})
|
||||
|
||||
project(interface)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ project(${TARGET_NAME})
|
|||
|
||||
# set up the external glm library
|
||||
include(${MACRO_DIR}/IncludeGLM.cmake)
|
||||
include_glm(${TARGET_NAME})
|
||||
include_glm(${TARGET_NAME} ${MACRO_DIR})
|
||||
|
||||
# grab the implemenation and header files
|
||||
file(GLOB HIFI_VOXELS_SRCS src/*.h src/*.cpp)
|
||||
|
|
Loading…
Reference in a new issue