Remove dependency on platform header paths

The tests and examples should not need these paths.

(cherry picked from commit d74c18117d)
This commit is contained in:
Camilla Löwy 2019-11-25 19:52:02 +01:00
parent 5a1512aaa0
commit 8c1b59f885
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
link_libraries(glfw)
include_directories(${glfw_INCLUDE_DIRS} "${GLFW_SOURCE_DIR}/deps")
include_directories("${GLFW_SOURCE_DIR}/deps")
if (MATH_LIBRARY)
link_libraries("${MATH_LIBRARY}")

View File

@ -1,7 +1,7 @@
link_libraries(glfw)
include_directories(${glfw_INCLUDE_DIRS} "${GLFW_SOURCE_DIR}/deps")
include_directories("${GLFW_SOURCE_DIR}/deps")
if (MATH_LIBRARY)
link_libraries("${MATH_LIBRARY}")