c++ - Use of edje_cc in cmake file -


i tried add custom target in cmake file compile .edc file edje_cc automatically on build mentioned here. part of efl project.

but error on compiling:

[    1s] [  0%] [ 50%] #### compile edc files #### [    1s] make[2]: edje_cc: command not found [    1s] make[2]: *** [cmakefiles/edje] error 127 [    1s] make[1]: *** [cmakefiles/edje.dir/all] error 2 [    1s] make[1]: *** waiting unfinished jobs.... 

can please tell me edje_cc compiler found @ compiling?

it seems edje_cc not installed on machine. modify cmakelists.txt add check finding edje_cc.

project("edje") find_program(edje_cc edje_cc)  if (not edje_cc)    message(fatal_error "edje_cc missing.") endif() 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -