~ubuntu-branches/ubuntu/precise/libical/precise

« back to all changes in this revision

Viewing changes to src/test/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2012-03-11 09:21:07 UTC
  • mfrom: (1.1.6) (3.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120311092107-aezy2i9ecie4w4tr
Tags: 0.48-1
* New upstream release. (Closes: #638597)
* Add debug libical debug package.
* Drop patches:
  - 01_fix_headers.diff - merged upstream.
  - 02_fix_bswap32_ftbfs_kfreebsd.diff - merged upstream.
* Add 0001_convert_float_to_strings_with_snprintf_sfbug3493034.patch
  using snprintf to convert float to strings isn't locale aware.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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
 
2
  ${CMAKE_BINARY_DIR}
 
3
  ${CMAKE_SOURCE_DIR}/src
 
4
  ${CMAKE_BINARY_DIR}/src
6
5
)
7
6
 
 
7
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
 
8
 
8
9
set(TEST_DATADIR "\\\"${CMAKE_SOURCE_DIR}/test-data\\\"")
9
10
add_definitions(-DTEST_DATADIR=${TEST_DATADIR})
10
11
 
33
34
 
34
35
target_link_libraries(regression ical icalss icalvcal)
35
36
 
 
37
add_test(regression regression)
36
38
 
37
39
########### next target ###############
38
40
 
100
102
  add_executable(timezones ${timezones_SRCS})
101
103
 
102
104
  target_link_libraries(timezones ical icalss)
 
105
 
 
106
  add_test(timezones timezones)
103
107
endif(NOT WIN32)
104
108
 
105
109
########### install files ###############