~ubuntu-branches/ubuntu/precise/poppler/precise-security

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-03-08 10:46:40 UTC
  • mfrom: (1.5.5) (4.3.2 experimental)
  • Revision ID: package-import@ubuntu.com-20110308104640-de1rwygu2cx2t0yt
Tags: 0.16.3-1ubuntu1
* Merge with Debian experimental. Remaining Ubuntu changes:
  - debian/control: Lower poppler-data to Suggests: (handled by
    language-selector).
  - Add 10_fix-a4-page-shift-on-brother-ps-printers.patch: Fix page shifts
    when printing on A4 paper with Brother PostScript printers.
    (LP #293832)
  - debian/control, debian/rules: Disable OpenJPEG, it's in universe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
set(POPPLER_MAJOR_VERSION "0")
18
18
set(POPPLER_MINOR_VERSION "16")
19
 
set(POPPLER_MICRO_VERSION "2")
 
19
set(POPPLER_MICRO_VERSION "3")
20
20
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
21
21
 
22
22
# command line switches
367
367
else(MSVC)
368
368
add_library(poppler SHARED ${poppler_SRCS})
369
369
endif(MSVC)
370
 
set_target_properties(poppler PROPERTIES VERSION 12.0.0 SOVERSION 12)
 
370
set_target_properties(poppler PROPERTIES VERSION 13.0.0 SOVERSION 13)
371
371
target_link_libraries(poppler ${poppler_LIBS})
372
372
target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "")
373
373
install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX})