[EFL] 3. Simple Application using Evas.
[목차로 이동] Enlightenment Foundation Language EFL의 가장 기본 구조인 Evas library만으로 이루어진 간단한 어플리케이션을 만들어 보았습니다. 컴파일은 아래와 같이 하면 됩니다. gcc -c simple simple.c `pkg-config --cflags --libs evas ecore-evas` #include #include #include int main() { Evas* evas; Ecore_Evas* window; Evas_Object* rect2; evas_init(); ecore_init(); ecore_evas_init(); window = ecore_evas_new(NULL, 0, 0, 800, 600, NULL); evas = ecore_evas..