diff --git a/.gitmodules b/.gitmodules index 572cc7e..68c86ce 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "3rdparty/glfw"] - path = 3rdparty/glfw - url = https://github.com/glfw/glfw [submodule "3rdparty/glad"] path = 3rdparty/glad url = https://github.com/Dav1dde/glad diff --git a/3rdparty/glfw b/3rdparty/glfw deleted file mode 160000 index 0be4f3f..0000000 --- a/3rdparty/glfw +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0be4f3f75aebd9d24583ee86590a38e741db0904 diff --git a/CMakeLists.txt b/CMakeLists.txt index 1672dc4..d201735 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,17 +183,6 @@ include_directories(${GLAD_INCLUDE_DIRS}) list (APPEND EXTRA_LIBS "glad") endif() -# ---- GLFW ---- -if(NOT ANDROID) -set(GLFW_BUILD_EXAMPLES OFF CACHE INTERNAL "Build the GLFW example programs") -set(GLFW_BUILD_TESTS OFF CACHE INTERNAL "Build the GLFW test programs") -set(GLFW_BUILD_DOCS OFF CACHE INTERNAL "Build the GLFW documentation") -set(GLFW_INSTALL OFF CACHE INTERNAL "Generate installation target") -add_subdirectory(3rdparty/glfw) -include_directories(3rdparty/glfw/include) -list (APPEND EXTRA_LIBS "${GLFW_LIBRARIES}") -endif() - add_library(kraken STATIC ${SRCS} ${KRAKEN_PUBLIC_HEADERS}) TARGET_LINK_LIBRARIES( kraken ${EXTRA_LIBS} ) SET_TARGET_PROPERTIES(