Removed giant submodules
This commit is contained in:
parent
622f1b231c
commit
d4507b5321
5 changed files with 4 additions and 16 deletions
8
.gitmodules
vendored
8
.gitmodules
vendored
|
@ -1,8 +0,0 @@
|
|||
[submodule "submodules/SDL_ttf"]
|
||||
path = submodules/SDL_ttf
|
||||
url = https://github.com/libsdl-org/SDL_ttf.git
|
||||
shallow = true
|
||||
[submodule "submodules/SDL"]
|
||||
path = submodules/SDL
|
||||
url = https://github.com/libsdl-org/SDL.git
|
||||
shallow = true
|
|
@ -1,11 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.30)
|
||||
|
||||
# This assumes the SDL source is available in vendored/SDL
|
||||
add_subdirectory(submodules/SDL EXCLUDE_FROM_ALL)
|
||||
|
||||
# This assumes the SDL_ttf source is available in vendored/SDL_ttf
|
||||
add_subdirectory(submodules/SDL_ttf EXCLUDE_FROM_ALL)
|
||||
|
||||
project(SDL_FPSCounter C)
|
||||
|
||||
add_subdirectory(src/)
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
add_library(SDL_FPSCounter STATIC SDL_FPSCounter.c)
|
||||
|
||||
find_package(SDL3 REQUIRED CONFIG REQUIRED COMPONENTS SDL3-shared)
|
||||
find_package(SDL3_ttf REQUIRED CONFIG REQUIRED COMPONENTS SDL3_ttf-shared)
|
||||
|
||||
add_executable(fps-counter WIN32 main.c)
|
||||
|
||||
target_link_libraries(fps-counter PRIVATE SDL_FPSCounter SDL3_ttf::SDL3_ttf SDL3::SDL3)
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 7ab1412e208e8fca12f99caae665de61e9fcf5a6
|
|
@ -1 +0,0 @@
|
|||
Subproject commit aaab1b9e98e8bbca572064ceb23f0fd916b2add5
|
Loading…
Reference in a new issue