I git cloned the GLM library to the same directory that I've cloned fbx-extract. I went into the glm library and performed the cmake command:
/usr/include/glm/cmake$ cmake ..
-- GLM: Version 0.9.9.9
GLM: GCC - GNU compiler
-- Configuring done
-- Generating done
-- Build files have been written to: /usr/include/glm/cmake
Following your instructions, I get a CMake error:
/usr/include/fbx-extract/build$ sudo cmake ..
CMake Error at CMakeLists.txt:31 (MESSAGE):
Please point the environment variable GLM_INCLUDE_DIR to the root directory
of your GLM installation.
-- Configuring incomplete, errors occurred!
See also "/usr/include/fbx-extract/build/CMakeFiles/CMakeOutput.log".
I'm using Ubuntu on Windows. Here is the end of my ~/.profile file:
export GLM_INCLUDE_DIR="/usr/include/glm"
And a sanity check:
/usr/include/fbx-extract/build$ echo $GLM_INCLUDE_DIR
/usr/include/glm
What have I done wrong?
I git cloned the GLM library to the same directory that I've cloned fbx-extract. I went into the glm library and performed the cmake command:
Following your instructions, I get a CMake error:
I'm using Ubuntu on Windows. Here is the end of my ~/.profile file:
export GLM_INCLUDE_DIR="/usr/include/glm"And a sanity check:
What have I done wrong?