mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 09:53:30 +02:00
10 lines
No EOL
267 B
CMake
10 lines
No EOL
267 B
CMake
macro(INCLUDE_GLM TARGET ROOT_DIR)
|
|
|
|
find_package(GLM REQUIRED)
|
|
include_directories("${GLM_INCLUDE_DIRS}")
|
|
|
|
if(APPLE OR UNIX)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -isystem ${GLM_INCLUDE_DIRS}")
|
|
endif(APPLE OR UNIX)
|
|
|
|
endmacro(INCLUDE_GLM _target _root_dir) |