add_library(fancy ketchup.c)
set_target_properties(fancy PROPERTIES COMPILE_DEFINITIONS STYLE=fancy)

add_library(plain ketchup.c)
set_target_properties(plain PROPERTIES COMPILE_DEFINITIONS STYLE=plain)

add_executable(fancyKetchup main_fancy.c)
target_link_libraries(fancyKetchup fancy)

add_executable(plainKetchup main_plain.c)
target_link_libraries(plainKetchup plain)
