7606545a27
FossilOrigin-Name: a8910644e6f7612e6793e8be844926f6d87659b2f9b2ac44543b0f5c0851837f
10 lines
No EOL
269 B
CMake
10 lines
No EOL
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}
|
|
)
|
|
|