summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/monkey/api/CMakeLists.txt
blob: 8833735ef9e6ef6569fd7afcca3c6c85d5e73c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set(src
  test.c)

add_executable(api_test ${src})

set(src
  errors.c
  )

add_executable(api_error ${src})

if (CMAKE_SYSTEM_NAME MATCHES "Windows")
  target_link_libraries(api_test monkey-core-static mk_core ws2_32)
  target_link_libraries(api_error monkey-core-static mk_core ws2_32)
else()
  target_link_libraries(api_test monkey-core-static)
  target_link_libraries(api_error monkey-core-static)
endif()