Imported Upstream version 1.0.0
[platform/upstream/libical.git] / examples / CMakeLists.txt
1 include_directories(
2   ${CMAKE_BINARY_DIR}
3   ${CMAKE_SOURCE_DIR}/src ${CMAKE_BINARY_DIR}/src
4   ${CMAKE_SOURCE_DIR}/src/libical ${CMAKE_BINARY_DIR}/src/libical
5   ${CMAKE_SOURCE_DIR}/src/libicalss ${CMAKE_BINARY_DIR}/src/libicalss
6 )
7
8 ########### next target ###############
9
10 set(doesnothing_SRCS
11   access_components.c
12   access_properties_and_parameters.c
13   errors.c
14   main.c
15   parse_text.c
16 )
17
18 add_executable(doesnothing ${doesnothing_SRCS})
19
20 target_link_libraries(doesnothing ical icalss icalvcal ical icalss icalvcal)
21
22 ########### install files ###############
23