diff --git a/.gitmodules b/.gitmodules index 601d051d..e69de29b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,21 +0,0 @@ -[submodule "lib/glfw"] - path = lib/glfw - url = https://github.com/glfw/glfw.git -[submodule "lib/glm"] - path = lib/glm - url = https://github.com/g-truc/glm.git -[submodule "lib/SDL"] - path = lib/SDL - url = https://github.com/libsdl-org/SDL.git -[submodule "lib/openal-soft"] - path = lib/openal-soft - url = https://github.com/kcat/openal-soft -[submodule "lib/AudioFile"] - path = lib/AudioFile - url = https://github.com/adamstark/AudioFile.git -[submodule "lib/freetype"] - path = lib/freetype - url = https://gitlab.freedesktop.org/freetype/freetype.git -[submodule "lib/libarchive"] - path = lib/libarchive - url = https://github.com/libarchive/libarchive diff --git a/lib/AudioFile b/lib/AudioFile deleted file mode 160000 index 004065d0..00000000 --- a/lib/AudioFile +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 004065d01e9b7338580390d4fdbfbaa46adede4e diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 8ca4cbff..ea139711 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -3,51 +3,53 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT +include(FetchContent) + # GLFW if(DAWN_TARGET_GLFW) - if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - set(DAWN_EMSCRIPTEN_FLAGS "${DAWN_EMSCRIPTEN_FLAGS} -s USE_GLFW=3" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - add_subdirectory(glad) - else() - add_subdirectory(glad) - add_subdirectory(glfw) - endif() -endif() + FetchContent_Declare(glfw URL https://github.com/glfw/glfw/releases/download/3.4/glfw-3.4.zip) + FetchContent_MakeAvailable(glfw) -# SDL -if(DAWN_TARGET_SDL2) add_subdirectory(glad) - add_subdirectory(SDL) endif() # GLM -add_subdirectory(glm) +FetchContent_Declare( + glm + GIT_REPOSITORY https://github.com/g-truc/glm + GIT_TAG 0af55ccecd98d4e5a8d1fad7de25ba429d60e863 +) +FetchContent_MakeAvailable(glm) # FreeType -if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - set(DAWN_EMSCRIPTEN_FLAGS "${DAWN_EMSCRIPTEN_FLAGS} -s USE_FREETYPE=1" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -else() - add_subdirectory(freetype) -endif() +FetchContent_Declare( + freetype + GIT_REPOSITORY https://gitlab.freedesktop.org/freetype/freetype + GIT_TAG VER-2-13-3 +) +FetchContent_MakeAvailable(freetype) -# LibArchive -if(DAWN_TARGET_ARCHIVE) - add_subdirectory(libarchive) -endif() +#LibArchive +FetchContent_Declare( + libarchive + GIT_REPOSITORY https://github.com/libarchive/libarchive + GIT_TAG v3.7.6 +) +FetchContent_MakeAvailable(libarchive) + +# JSON +FetchContent_Declare( + json + URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz +) +FetchContent_MakeAvailable(json) # OpenAL -if(DAWN_TARGET_OPENAL) - set(LIBTYPE "STATIC") - add_subdirectory(openal-soft) +# if(DAWN_TARGET_OPENAL) +# set(LIBTYPE "STATIC") +# add_subdirectory(openal-soft) - set(BUILD_TESTS OFF CACHE BOOL "Build tests" FORCE) - set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples" FORCE) - add_subdirectory(AudioFile) -endif() - -# Emscripten (TESTING ONLY) -if(DEFINED DAWN_EMSCRIPTEN_FLAGS) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -endif() \ No newline at end of file +# set(BUILD_TESTS OFF CACHE BOOL "Build tests" FORCE) +# set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples" FORCE) +# add_subdirectory(AudioFile) +# endif() \ No newline at end of file diff --git a/lib/SDL b/lib/SDL deleted file mode 160000 index fb149756..00000000 --- a/lib/SDL +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fb1497566c5a05e2babdcf45ef0ab5c7cca2c4ae diff --git a/lib/freetype b/lib/freetype deleted file mode 160000 index 7ff43d3e..00000000 --- a/lib/freetype +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7ff43d3e9f981991048a459303e431bf0c617a36 diff --git a/lib/glfw b/lib/glfw deleted file mode 160000 index b35641f4..00000000 --- a/lib/glfw +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b35641f4a3c62aa86a0b3c983d163bc0fe36026d diff --git a/lib/glm b/lib/glm deleted file mode 160000 index 45008b22..00000000 --- a/lib/glm +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 45008b225e28eb700fa0f7d3ff69b7c1db94fadf diff --git a/lib/libarchive b/lib/libarchive deleted file mode 160000 index 313aa1fa..00000000 --- a/lib/libarchive +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 313aa1fa10b657de791e3202c168a6c833bc3543 diff --git a/lib/openal-soft b/lib/openal-soft deleted file mode 160000 index d3875f33..00000000 --- a/lib/openal-soft +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d3875f333fb6abe2f39d82caca329414871ae53b