summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-06-10 23:09:37 -0400
committerJoe Crayne <joe@jerkface.net>2019-06-10 23:09:37 -0400
commitd8f9f12d6f2f701f0531d689976fd73fb6b6251c (patch)
tree9cd1596a05f78cb5db5105b28b80fb8ddfd4efb0
parent38b7bcf654e5e804a13518b060ebdba59bf232bb (diff)
cabal init generated build files.
-rw-r--r--CHANGELOG.md5
-rw-r--r--LICENSE30
-rw-r--r--Setup.hs2
-rw-r--r--wavefront-obj.cabal26
4 files changed, 63 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..9ea9627
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,5 @@
1# Revision history for wavefront-obj
2
3## 0.1.0.0 -- 2019-06-10
4
5* Cabal file generated. Forked wavefront,collada-types,triangulation, and 3dWaves.
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..6cf0b99
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,30 @@
1Copyright (c) 2019, Joe Crayne
2
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
10
11 * Redistributions in binary form must reproduce the above
12 copyright notice, this list of conditions and the following
13 disclaimer in the documentation and/or other materials provided
14 with the distribution.
15
16 * Neither the name of Joe Crayne nor the names of other
17 contributors may be used to endorse or promote products derived
18 from this software without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
index 0000000..9a994af
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,2 @@
1import Distribution.Simple
2main = defaultMain
diff --git a/wavefront-obj.cabal b/wavefront-obj.cabal
new file mode 100644
index 0000000..5ec183a
--- /dev/null
+++ b/wavefront-obj.cabal
@@ -0,0 +1,26 @@
1cabal-version: >=1.10
2-- Initial package description 'wavefront-obj.cabal' generated by 'cabal
3-- init'. For further documentation, see
4-- http://haskell.org/cabal/users-guide/
5
6name: wavefront-obj
7version: 0.1.0.0
8synopsis: Wavefront OBJ parser, triangulation algorithms, Collada format types
9-- description:
10-- bug-reports:
11license: BSD3
12license-file: LICENSE
13author: Joe Crayne
14maintainer: joe@jerkface.net
15-- copyright:
16category: Graphics
17build-type: Simple
18extra-source-files: CHANGELOG.md
19
20library
21 exposed-modules: Graphics.WaveFront, Graphics.WaveFront.Foreign, Graphics.WaveFront.Parse, Graphics.WaveFront.Model, Graphics.WaveFront.Lenses, Graphics.WaveFront.Types, Graphics.WaveFront.Load, Graphics.WaveFront.Parse.Common, Graphics.WaveFront.Parse.OBJ, Graphics.WaveFront.Parse.MTL, Graphics.Triangulation.Triangulation, Graphics.Triangulation.KETTriangulation, Graphics.Triangulation.GJPTriangulation, Graphics.Formats.Collada.ColladaTypes, Graphics.Formats.Collada.Transformations, Graphics.Formats.Collada.GenerateObjects, Graphics.Formats.Collada.Vector2D3D, Codec.Wavefront, Codec.Wavefront.Element, Codec.Wavefront.Object, Codec.Wavefront.IO, Codec.Wavefront.Location, Codec.Wavefront.TexCoord, Codec.Wavefront.Lexer, Codec.Wavefront.Line, Codec.Wavefront.Normal, Codec.Wavefront.Point, Codec.Wavefront.Face, Codec.Wavefront.Token
22 -- other-modules:
23 other-extensions: ForeignFunctionInterface, UnicodeSyntax, TupleSections, OverloadedStrings, NamedFieldPuns, FlexibleContexts, ScopedTypeVariables, OverloadedLists, TemplateHaskell, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, DuplicateRecordFields, StandaloneDeriving, DeriveFunctor, UndecidableInstances, DeriveFoldable, BangPatterns, PatternSynonyms
24 build-depends: base >=4.11 && <4.12, vector >=0.12 && <0.13, text >=1.2 && <1.3, containers >=0.5 && <0.6, linear >=1.20 && <1.21, lens >=4.16 && <4.17, Cartesian >=0.6 && <0.7, filepath >=1.4 && <1.5, transformers >=0.5 && <0.6, attoparsec >=0.13 && <0.14, tuple >=0.3 && <0.4, vector-algorithms >=0.7 && <0.8, OpenGL >=3.0 && <3.1, enumerable >=0.0 && <0.1, tuple-gen >=2.0 && <2.1, dlist >=0.8 && <0.9, mtl >=2.2 && <2.3
25 hs-source-dirs: src
26 default-language: Haskell2010