~ubuntu-branches/ubuntu/natty/spring/natty

« back to all changes in this revision

Viewing changes to rts/lib/7z/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-09-23 18:56:03 UTC
  • mfrom: (3.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100923185603-st97s5chplo42y7w
Tags: 0.82.5.1+dfsg1-1ubuntu1
* Latest upstream version for online play
* debian/control: Replace (rather than conflict) spring-engine
  - spring-engine will be a dummy package (LP: #612905)
  - also set maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Spring supplied CMake build file
 
2
 
 
3
SET(7zSources
 
4
                "7zBuf"
 
5
                "7zBuf2"
 
6
                "7zCrc"
 
7
                "7zFile"
 
8
                "7zStream"
 
9
                "Bcj2"
 
10
                "Bra"
 
11
                "Bra86"
 
12
                "LzmaDec"
 
13
                "Archive/7z/7zAlloc"
 
14
                "Archive/7z/7zDecode"
 
15
                "Archive/7z/7zExtract"
 
16
                "Archive/7z/7zHeader"
 
17
                "Archive/7z/7zIn"
 
18
                "Archive/7z/7zItem"
 
19
        )
 
20
 
 
21
ADD_LIBRARY(7zip STATIC EXCLUDE_FROM_ALL ${7zSources})
 
22
SET_TARGET_PROPERTIES(7zip PROPERTIES COMPILE_FLAGS "${PIC_FLAG}")
 
23