diff --git a/.gitmodules b/.gitmodules index 47482bd..90e2110 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,6 +10,3 @@ [submodule "inferno/vendor/stb"] path = inferno/vendor/stb url = https://github.com/nothings/stb -[submodule "inferno/vendor/freetype"] - path = inferno/vendor/freetype - url = https://github.com/aseprite/freetype2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 13f60ff..ac5e883 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,6 @@ endif() # Include all headers include_directories( - "${ENGINE}/vendor/freetype/include" "${ENGINE}/vendor/glad/include" "${ENGINE}/vendor/glfw/include" "${ENGINE}/vendor/glm" @@ -77,11 +76,8 @@ set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # Add GLFW target to project add_subdirectory(${ENGINE}/vendor/glfw) -# Add FreeType2 target to project -add_subdirectory(${ENGINE}/vendor/freetype) - add_library(${ENGINE} STATIC ${ENGINE_SOURCES}) -target_link_libraries(${ENGINE} glfw freetype) +target_link_libraries(${ENGINE} glfw) # ------------------------------------------ diff --git a/README.org b/README.org index df42dad..c7a2b1e 100644 --- a/README.org +++ b/README.org @@ -35,7 +35,6 @@ Or * Libraries # - [[https://github.com/bulletphysics/bullet3][Bullet]] -- [[https://github.com/aseprite/freetype2][FreeType2]] - [[https://github.com/Dav1dde/glad][glad]] - [[https://github.com/glfw/glfw][GLFW]] - [[https://github.com/g-truc/glm][GLM]] diff --git a/inferno/vendor/freetype b/inferno/vendor/freetype deleted file mode 160000 index fbbcf50..0000000 --- a/inferno/vendor/freetype +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fbbcf50367403a6316a013b51690071198962920