aboutsummaryrefslogtreecommitdiff
path: root/cmake.deps/cmake/libtermkeyCMakeLists.txt
blob: 6c02b7549d32177206fb7fca70737dfde8eaed06 (plain) (blame)
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
cmake_minimum_required(VERSION 3.10)
project(libtermkey)

add_definitions(-D _CRT_SECURE_NO_WARNINGS)
add_definitions(-DHAVE_UNIBILIUM)
if(NOT MSVC)
  add_compile_options(-std=c99)
endif()

include_directories(${PROJECT_BINARY_DIR}/t)
include_directories(SYSTEM ${UNIBILIUM_INCLUDE_DIRS})

add_library(termkey termkey.c driver-csi.c driver-ti.c)
set_target_properties(termkey PROPERTIES
  PUBLIC_HEADER ${PROJECT_SOURCE_DIR}/termkey.h)
target_link_libraries(termkey ${UNIBILIUM_LIBRARIES})

include(GNUInstallDirs)
install(TARGETS termkey
  ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
  PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})

enable_testing()
file(GLOB TESTSOURCES "t/[0-9]*.c")
foreach(f ${TESTSOURCES})
  get_filename_component(t ${f} NAME_WE)
  if(${t} STREQUAL 05read)
    continue()
  endif()

  add_executable("test_${t}" ${f} t/taplib.c)
  target_link_libraries("test_${t}" termkey)
  add_test("${t}" "test_${t}")
endforeach()