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

« back to all changes in this revision

Viewing changes to rts/lib/oscpack/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(oscpackSources
 
4
                "OscOutboundPacketStream"
 
5
                "OscTypes"
 
6
        )
 
7
 
 
8
ADD_LIBRARY(oscpack STATIC EXCLUDE_FROM_ALL ${oscpackSources})
 
9
IF (APPLE)
 
10
        SET_TARGET_PROPERTIES(oscpack PROPERTIES COMPILE_FLAGS -DOSC_HOST_BIG_ENDIAN)
 
11
ELSE (APPLE)
 
12
        SET_TARGET_PROPERTIES(oscpack PROPERTIES COMPILE_FLAGS -DOSC_HOST_LITTLE_ENDIAN)
 
13
ENDIF (APPLE)
 
14