~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to jpeg/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PROJECT(FLTKJPEG)
 
2
 
 
3
INCLUDE_REGULAR_EXPRESSION("^(jchuff|jconfig|jdct|jdhuff|jerror|jinclude|jmemsys|jmorecfg|jpegint|jpeglib|jversion|jpeg).*$")
 
4
 
 
5
INCLUDE_DIRECTORIES(${FLTKJPEG_SOURCE_DIR})
 
6
INCLUDE_DIRECTORIES(${FLTKJPEG_BINARY_DIR})
 
7
 
 
8
# memmgr back ends: compile only one of these into a working library
 
9
# (For now, let's use the mode that requires the image fit into memory.
 
10
# This is the recommended mode for Win32 anyway.)
 
11
SET(systemdependent_SRCS jmemnobs.c)
 
12
 
 
13
# library object files common to compression and decompression
 
14
SET(common_SRCS
 
15
jcomapi.c jutils.c jerror.c jmemmgr.c
 
16
)
 
17
 
 
18
# compression library object files
 
19
SET(compression_SRCS
 
20
jcapimin.c jcapistd.c jctrans.c jcparam.c jdatadst.c jcinit.c
 
21
jcmaster.c jcmarker.c jcmainct.c jcprepct.c jccoefct.c jccolor.c
 
22
jcsample.c jchuff.c jcphuff.c jcdctmgr.c jfdctfst.c jfdctflt.c
 
23
jfdctint.c
 
24
)
 
25
 
 
26
# decompression library object files
 
27
SET(decompression_SRCS
 
28
jdapimin.c jdapistd.c jdtrans.c jdatasrc.c jdmaster.c
 
29
jdinput.c jdmarker.c jdhuff.c jdphuff.c jdmainct.c jdcoefct.c
 
30
jdpostct.c jddctmgr.c jidctfst.c jidctflt.c jidctint.c jidctred.c
 
31
jdsample.c jdcolor.c jquant1.c jquant2.c jdmerge.c
 
32
)
 
33
 
 
34
ADD_LIBRARY(fltk_jpeg ${systemdependent_SRCS} ${common_SRCS} ${compression_SRCS} ${decompression_SRCS})
 
35