~ubuntu-branches/ubuntu/oneiric/libclaw/oneiric

« back to all changes in this revision

Viewing changes to examples/compress/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge
  • Date: 2008-05-17 15:36:57 UTC
  • Revision ID: james.westby@ubuntu.com-20080517153657-0b1204j754ykoz48
Tags: upstream-1.5.2b
ImportĀ upstreamĀ versionĀ 1.5.2b

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PROJECT(claw-codec-example)
 
2
 
 
3
# common flags
 
4
SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ansi -pedantic -Wall" )
 
5
 
 
6
INCLUDE( FindCLAW )
 
7
 
 
8
INCLUDE_DIRECTORIES( ${CLAW_INCLUDE_DIRECTORY} )
 
9
ADD_DEFINITIONS( ${CLAW_DEFINITIONS} )
 
10
 
 
11
ADD_EXECUTABLE( ex-compress compress.cpp )
 
12
ADD_EXECUTABLE( ex-decompress decompress.cpp )