summaryrefslogtreecommitdiffstats
path: root/test/CMakeLists.txt
blob: aee6c45ec8346e63a9989b03dffd3d0882fcbb74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include_directories(${KIRO_SOURCE_DIR}/src)
link_directories(${KIRO_BINARY_DIR}/src)

find_package(PkgConfig)
pkg_check_modules(SDL sdl>=1.2.15)

if (SDL_FOUND)
   add_executable(client test-client.c)
   target_link_libraries(client kiro SDL m gobject-2.0 glib-2.0)
else ()
   message("SDL not found: Won't build KIRO test-client binary.")
endif ()

add_executable(server test-server.c)
target_link_libraries(server kiro gobject-2.0 glib-2.0)