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