You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/sdl_image-test-CMakeLists.txt

14 lines
391 B

# This file is part of MXE. See LICENSE.md for licensing information.
project(SDL_image_test)
cmake_minimum_required(VERSION 2.8)
find_package(SDL REQUIRED)
find_package(SDL_image REQUIRED)
include_directories( ${SDL_INCLUDE_DIRS} ${SDL_IMAGE_INCLUDE_DIRS})
add_executable(sdl_image_test
sdl_image-test.c
)
target_link_libraries(sdl_image_test ${SDL_LIBRARY} ${SDL_IMAGE_LIBRARY} )