From 7ce2d07153ad1247f47913eeb1c41d58f3b55964 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Sat, 2 Jan 2021 20:46:06 -0800 Subject: [PATCH] removing SDL2 find_package until I figure out how to set it up universally --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 264cadb..f6e8831 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,7 +90,6 @@ endif() # Link and create SDL2 Definition if we're using SDL2 if (SDL2_ENABLED) - find_package(SDL2 REQUIRED) add_compile_definitions(BLAH_USE_SDL2) target_include_directories(blah PUBLIC "$") set(LIBS ${LIBS} ${SDL2_LIBRARIES})