You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
243 B

enable_language(C)
add_executable(badmoc badmoc.c)
target_compile_definitions(badmoc PRIVATE "CONFIG=\"$<CONFIG>\"")
add_executable(exe main.c)
set_target_properties(exe PROPERTIES
AUTOMOC ON
AUTOMOC_EXECUTABLE $<TARGET_FILE:badmoc>
)