From 966e53fa153175864e151ec8a8e11f688c3e752d Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Thu, 6 Jan 2022 21:37:57 -0500 Subject: [PATCH] CMake: don't hardcode "/include" in target_include_directories --- build/cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmake/CMakeLists.txt b/build/cmake/CMakeLists.txt index 5226592..acd4b2e 100644 --- a/build/cmake/CMakeLists.txt +++ b/build/cmake/CMakeLists.txt @@ -176,7 +176,7 @@ if(CMAKE_VERSION VERSION_LESS 2.8.12) else() target_compile_definitions(glew_s INTERFACE "GLEW_STATIC") foreach(t glew glew_s) - target_include_directories(${t} PUBLIC $) + target_include_directories(${t} PUBLIC $) endforeach() set(MAYBE_EXPORT EXPORT glew-targets) endif()