mastodont-c/tests/CMakeLists.txt
nekobit 7606545a27 Fix function
FossilOrigin-Name: a8910644e6f7612e6793e8be844926f6d87659b2f9b2ac44543b0f5c0851837f
2023-03-03 18:30:07 +00:00

10 lines
269 B
CMake

include(../cmake/mastodont-config.cmake)
add_executable(get_feed get_feed.c)
target_compile_options(get_feed PUBLIC -std=c99 -Wall)
target_link_libraries(get_feed PUBLIC
${MASTODONT_LIBRARIES}
)
target_include_directories(get_feed PUBLIC
${MASTODONT_INCLUDE_DIRS}
)