cmake: add that dependency to the right target

we need the eolian-bin for ${target}-eo not ${target}
This commit is contained in:
Marcel Hollerbach 2017-01-23 19:47:50 +01:00
parent 27504d7db0
commit 5b56f3a79d
1 changed files with 1 additions and 1 deletions

View File

@ -1098,6 +1098,6 @@ function(EFL_CREATE_EO_RULES target generation_dir)
DEPENDS ${eo_gen_files}
)
add_dependencies(${target} ${target}-eo)
add_dependencies(${target} eolian-bin)
add_dependencies(${target}-eo eolian-bin)
endif()
endfunction()