From 3760eca97453665199c6faf21880f5b4e49ea3dc Mon Sep 17 00:00:00 2001 From: devZoGok Date: Tue, 15 Aug 2023 15:00:19 +0300 Subject: [PATCH] updated GLFW link dir --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dcd234a..664b70a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ set(LIB_NAME gameBase) add_library(${LIB_NAME} STATIC ${states} ${core} ${util}) set(GLFW_DIR external/glfw) -set(GLFW_LIB_DIR ../vb01/build/external/glfw/src) +set(GLFW_LIB_DIR build/external/glfw/src) target_include_directories(${LIB_NAME} PUBLIC ${GLFW_DIR}/include/GLFW) target_link_directories(${LIB_NAME} PUBLIC ${GLFW_LIB_DIR})