summaryrefslogtreecommitdiffstats
path: root/src/sdl_sound-test-CMakeLists.txt
blob: dc2d5f086ff4cd03fb06ac474c996e8d9d366ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This file is part of MXE.
# See index.html for further information.

project(18)
cmake_minimum_required(VERSION 2.8)

find_package(SDL_sound REQUIRED)

include_directories(${SDL_SOUND_INCLUDE_DIRS})
add_executable(sdl_sound_test
  sdl_sound-test.c
  )
target_link_libraries(sdl_sound_test ${SDL_SOUND_LIBRARIES})