diff options
author | Allen Winter <allen.winter@kdab.com> | 2014-06-28 17:45:24 -0400 |
---|---|---|
committer | Allen Winter <allen.winter@kdab.com> | 2014-06-28 17:45:24 -0400 |
commit | 43858141030ba123a4959231cadc9951b983f0fd (patch) | |
tree | 8256c1dbf3ca7c9e58a3dbecf07cf826fb2e0ce2 /examples/CMakeLists.txt | |
download | libical-git-1.0.0.tar.gz |
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 00000000..3379ffd8 --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,23 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/src ${CMAKE_BINARY_DIR}/src + ${CMAKE_SOURCE_DIR}/src/libical ${CMAKE_BINARY_DIR}/src/libical + ${CMAKE_SOURCE_DIR}/src/libicalss ${CMAKE_BINARY_DIR}/src/libicalss +) + +########### next target ############### + +set(doesnothing_SRCS + access_components.c + access_properties_and_parameters.c + errors.c + main.c + parse_text.c +) + +add_executable(doesnothing ${doesnothing_SRCS}) + +target_link_libraries(doesnothing ical icalss icalvcal ical icalss icalvcal) + +########### install files ############### + |