File: CMakeLists.txt

package info (click to toggle)
supertuxkart 0.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 645,004 kB
  • sloc: cpp: 341,359; ansic: 132,204; xml: 50,646; sh: 17,914; asm: 1,732; makefile: 1,070; awk: 800; python: 717; objc: 452; perl: 104
file content (56 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
cmake_minimum_required(VERSION 2.4.4)

if(APPLE)
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -arch x86_64")
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -arch x86_64 -F/Library/Frameworks")
endif()

SET(JPEG_SRCS
 jaricom.c
 jcapimin.c
 jcapistd.c
 jcarith.c
 jccoefct.c
 jccolor.c
 jcdctmgr.c
 jchuff.c
 jcinit.c
 jcmainct.c
 jcmarker.c
 jcmaster.c
 jcomapi.c
 jcparam.c
 jcprepct.c
 jcsample.c
 jctrans.c
 jdapimin.c
 jdapistd.c
 jdarith.c
 jdatadst.c
 jdatasrc.c
 jdcoefct.c
 jdcolor.c
 jddctmgr.c
 jdhuff.c
 jdinput.c
 jdmainct.c
 jdmarker.c
 jdmaster.c
 jdmerge.c
 jdpostct.c
 jdsample.c
 jdtrans.c
 jerror.c
 jfdctflt.c
 jfdctfst.c
 jfdctint.c
 jidctflt.c
 jidctfst.c
 jidctint.c
 jmemmgr.c
 jmemnobs.c
 jquant1.c
 jquant2.c
 jutils.c)

add_library(jpeglib STATIC ${JPEG_SRCS})