1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# This cmake build script is meant for verifying the various CMake configuration script.
cmake_minimum_required(VERSION 3.12)
project(sdl_test LANGUAGES C)
cmake_policy(SET CMP0074 NEW)
# Override CMAKE_FIND_ROOT_PATH_MODE to allow search for SDL2 outside of sysroot
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE NEVER)
include(FeatureSummary)
option(TEST_SHARED "Test linking to shared SDL2_image library" ON)
add_feature_info("TEST_SHARED" TEST_SHARED "Test linking with shared library")
option(TEST_STATIC "Test linking to static SDL2_image library" ON)
add_feature_info("TEST_STATIC" TEST_STATIC "Test linking with static library")
if(TEST_SHARED)
# FIXME: in the distant future, must become REQUIRED
find_package(SDL2 CONFIG COMPONENTS SDL2)
# FIXME: and the following should be removed
if(NOT TARGET SDL2::SDL2)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/..")
include(PrivateSdlFunctions)
sdl_find_sdl2(SDL2::SDL2 2.0)
endif()
find_package(SDL2_image REQUIRED CONFIG)
add_executable(main_shared main.c)
target_link_libraries(main_shared PRIVATE SDL2::SDL2 SDL2_image::SDL2_image)
endif()
if(TEST_STATIC)
# FIXME: in the distant future, must become REQUIRED
find_package(SDL2 CONFIG COMPONENTS SDL2-static)
# FIXME: and the following should be removed
if(NOT TARGET SDL2::SDL2-static)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/..")
include(PrivateSdlFunctions)
sdl_find_sdl2(SDL2::SDL2-static 2.0)
endif()
# some static vendored libraries use c++ (enable CXX after `find_package` might show a warning)
enable_language(CXX)
find_package(SDL2_image REQUIRED CONFIG)
add_executable(main_static main.c)
target_link_libraries(main_static PRIVATE SDL2::SDL2-static SDL2_image::SDL2_image-static)
endif()
feature_summary(WHAT ALL)
|