summaryrefslogtreecommitdiffstats
path: root/src/sdl_image-test-CMakeLists.txt
blob: 9fc282bcb6713747930e04845867156e9cfbcc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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}  )