Removed GLM dependency from shared & static library targets.

These targets do not compile any source and thus don't need the include dir, but CMake exports a link-only dependency for the static library, which is also not required as GLM is header-only.
This commit is contained in:
Kai Blaschke
2022-04-11 22:20:04 +02:00
committed by Mischa Spiegelmock
parent c92f32b4b3
commit 162fd411cd
2 changed files with 0 additions and 4 deletions

View File

@ -38,8 +38,6 @@ target_include_directories(projectM_shared
)
target_link_libraries(projectM_shared
PRIVATE
GLM::GLM
PUBLIC
${PROJECTM_OPENGL_LIBRARIES}
${CMAKE_DL_LIBS}

View File

@ -36,8 +36,6 @@ target_include_directories(projectM_static
)
target_link_libraries(projectM_static
PRIVATE
GLM::GLM
PUBLIC
${PROJECTM_OPENGL_LIBRARIES}
)