Eo: Removed "type" property from event/op descriptions.
[profile/ivi/eobj.git] / examples / constructors / CMakeLists.txt
1 LIST(APPEND CONSTRUCTORS_CC_SOURCES
2    main.c
3    simple.c
4    simple2.c
5    simple3.c
6    simple4.c
7    simple5.c
8    simple6.c
9    mixin.c
10    )
11
12 include_directories(
13    ${EINA_INCLUDE_DIRS}
14    ${EVAS_INCLUDE_DIRS}
15    ${CMAKE_SOURCE_DIR}/lib
16    )
17
18 add_executable(constructors ${CONSTRUCTORS_CC_SOURCES})
19
20 get_target_property(eo_LIB_FILE eo LOCATION)
21 target_link_libraries(constructors
22    ${EINA_LIBRARIES}
23    ${EINA_LDFLAGS_OTHER}
24    ${eo_LIB_FILE}
25    )
26
27 add_dependencies(constructors eo)
28
29 add_test(Example_constructors constructors)