From 5bcd58a31e70f7b0168c50166158d01389ac93c0 Mon Sep 17 00:00:00 2001 From: fura95 Date: Thu, 1 Apr 2021 23:38:34 +0300 Subject: [PATCH] Fixed CMakeLists.txt --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 651b198..ff4ff44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,16 +12,16 @@ add_executable(progressiatexturepreviewer install(TARGETS progressiatexturepreviewer RUNTIME DESTINATION bin) -# Link with GLFW3 -find_package(glfw3 3.2 REQUIRED) +# Use GLFW3 +add_subdirectory(libs/glfw) target_link_libraries(progressiatexturepreviewer glfw) # Link with OpenGL find_package(OpenGL REQUIRED) target_link_libraries(progressiatexturepreviewer OpenGL::GL) -# Link with GLM -find_package(glm REQUIRED) +# Use GLM +add_subdirectory(libs/glm) target_link_libraries(progressiatexturepreviewer glm) # Use GLAD