From 2f140fee070d491cc80d53e36200fdb5d47aee66 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Fri, 29 Oct 2021 18:04:04 +0200 Subject: [PATCH] Devendor SDL2 First try to find system-installed SDL2. Fallback to (hopefully) checked-out submodule. Also disabled shared library build of vendored SDL2. --- CMakeLists.txt | 12 +++++++++++- NES Emulator/CMakeLists.txt | 6 +++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 61e7eb9..034c441 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,5 +2,15 @@ project ("NES Emulator") -add_subdirectory ("vendor/SDL") +find_package (SDL2) +if (SDL2_FOUND) + message (STATUS "SDL2 found, using system-installed SDL2") +else (SDL2_FOUND) + message (STATUS "SDL2 not found, using vendored static SDL2") + set (BUILD_SHARED_LIBS OFF) + add_subdirectory ("vendor/SDL") + set (SDL2_INCLUDE_DIRS SDL2-static) + set (SDL2_LIBRARIES SDL2-static SDL2main) +endif (SDL2_FOUND) + add_subdirectory ("NES Emulator") diff --git a/NES Emulator/CMakeLists.txt b/NES Emulator/CMakeLists.txt index 40e4070..df9fc7b 100644 --- a/NES Emulator/CMakeLists.txt +++ b/NES Emulator/CMakeLists.txt @@ -2,8 +2,8 @@ add_executable (nesemu "main.c" "cpu.h" "types.h" "bus.h" "bus.c" "cartridge.h" "cpu.c" "cartridge.c" "opcodes.c" "log.c" "ppu.h" "ppu.c" "mapper.h" "mappers/mapper000.h" "mappers/mapper000.c" "mapper.c") -target_include_directories(nesemu PUBLIC SDL2-static) -target_link_libraries(nesemu PUBLIC SDL2-static SDL2main) +target_include_directories(nesemu PUBLIC ${SDL2_INCLUDE_DIRS}) +target_link_libraries(nesemu PUBLIC ${SDL2_LIBRARIES}) if(MSVC) target_compile_definitions(nesemu PUBLIC _CRT_SECURE_NO_WARNINGS) @@ -11,4 +11,4 @@ endif() add_custom_command(TARGET nesemu POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/roms $/roms -) \ No newline at end of file +)