summaryrefslogtreecommitdiffstats
path: root/fluent-bit/examples/hello_world/CMakeLists.txt
blob: 2e55b75f0ed4991d44c417f7fc6a0f594e9389be (plain)
1
2
3
4
5
6
7
8
9
set(src
  ${src}
  hello_world.c
  )

find_package (Threads)
add_executable(hello_world ${src})
target_link_libraries(hello_world fluent-bit-shared)
target_link_libraries(hello_world ${CMAKE_THREAD_LIBS_INIT})