Skip to content

Commit

Permalink
Moved example to examples/ directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone committed Oct 29, 2011
1 parent 07fec4f commit d13cea5
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -3,3 +3,5 @@
src/TAGS
dist/
cabal-dev/
*_stub.c
*_stub.h
30 changes: 30 additions & 0 deletions examples/LICENSE
@@ -0,0 +1,30 @@
Copyright (c)2011, Chris Done

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

* Neither the name of Chris Done nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 changes: 28 additions & 0 deletions examples/examples.cabal
@@ -0,0 +1,28 @@
Name: examples
Version: 0.1
Synopsis: Examples of Kinect stuff.
Homepage: https://github.com/chrisdone/freenect
License: BSD3
License-file: LICENSE
Author: Chris Done
Maintainer: chrisdone@gmail.com
Copyright: Chris Done
Category: Graphics
Build-type: Simple
Cabal-version: >=1.6
Stability: Experimental

source-repository head
type: git
location: http://github.com/chrisdone/freenect

Executable depth
Hs-source-dirs: ../src src
Main-is: Depth.hs
Other-Modules: Freenect Freenect.FFI
Ghc-options: -O2
Build-depends: base > 4 && < 5, vector
Includes: libfreenect.h libfreenect_sync.h
Extra-libraries: freenect, freenect_sync
C-sources: ../cbits/freenect-helpers.c
Include-dirs: ../cbits
File renamed without changes.
13 changes: 1 addition & 12 deletions freenect.cabal
@@ -1,5 +1,5 @@
Name: freenect
Version: 1.0.2
Version: 1.1.0
Synopsis: Interface to the Kinect device.
Description: Interface to the Kinect device. Currently supports
depth perception. (No video or audio.)
Expand Down Expand Up @@ -27,14 +27,3 @@ Library
Extra-libraries: freenect, freenect_sync
C-sources: cbits/freenect-helpers.c
Include-dirs: cbits

Executable freenect-haskell-example
Hs-source-dirs: src
Main-is: Main.hs
Other-Modules: Freenect Freenect.FFI
Ghc-options: -O2
Build-depends: base > 4 && < 5, vector
Includes: libfreenect.h libfreenect_sync.h
Extra-libraries: freenect, freenect_sync
C-sources: cbits/freenect-helpers.c
Include-dirs: cbits

0 comments on commit d13cea5

Please sign in to comment.