if(STATICALLY_LINK) message(STATUS "Statically Linking SDL") set(SDL_STATIC ON CACHE BOOL "" FORCE) set(SDL_SHARED OFF CACHE BOOL "" FORCE) else() message(STATUS "Dynamically Linking SDL") set(SDL_STATIC OFF CACHE BOOL "" FORCE) set(SDL_SHARED ON CACHE BOOL "" FORCE) endif() # why this is disabled, i have no idea but this MUST be on for a windows+clang(llvm) shared compile to work set(SDL_LIBC ON CACHE BOOL "" FORCE) set(SDL_TEST OFF CACHE BOOL "" FORCE) set(SDL_ATOMIC ON CACHE BOOL "") set(SDL_AUDIO OFF CACHE BOOL "") set(SDL_VIDEO ON CACHE BOOL "") set(SDL_RENDER OFF CACHE BOOL "") set(SDL_EVENTS ON CACHE BOOL "") set(SDL_JOYSTICK ON CACHE BOOL "") set(SDL_HAPTIC ON CACHE BOOL "") set(SDL_HIDAPI ON CACHE BOOL "") set(SDL_POWER OFF CACHE BOOL "") set(SDL_THREADS ON CACHE BOOL "") set(SDL_TIMERS ON CACHE BOOL "") set(SDL_FILE ON CACHE BOOL "") set(SDL_LOADSO ON CACHE BOOL "") set(SDL_CPUINFO OFF CACHE BOOL "") set(SDL_FILESYSTEM OFF CACHE BOOL "") set(SDL_DLOPEN ON CACHE BOOL "") set(SDL_SENSOR OFF CACHE BOOL "") set(SDL_LOCALE OFF CACHE BOOL "")