Last active
August 29, 2015 14:04
-
-
Save Keloran/32bdffe557bcfe3b5cea to your computer and use it in GitHub Desktop.
the cpp will include the file, the hpp will fail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GLM | |
find_package(GLM REQUIRED) | |
include_directories(${GLM_INCLUDE_DIRS}) | |
link_directories(${GLM_LIBRARY_DIRS}) | |
add_definitions(${GLM_DEFINITIONS}) | |
if (NOT GLM_FOUND) | |
message(ERROR "GLM Not Found") | |
endif(NOT GLM_FOUND) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <glm/glm.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <glm/glm.hpp> |
evelikov
commented
Aug 5, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment