From d8f9f12d6f2f701f0531d689976fd73fb6b6251c Mon Sep 17 00:00:00 2001 From: Joe Crayne Date: Mon, 10 Jun 2019 23:09:37 -0400 Subject: cabal init generated build files. --- CHANGELOG.md | 5 +++++ LICENSE | 30 ++++++++++++++++++++++++++++++ Setup.hs | 2 ++ wavefront-obj.cabal | 26 ++++++++++++++++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 Setup.hs create mode 100644 wavefront-obj.cabal diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9ea9627 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Revision history for wavefront-obj + +## 0.1.0.0 -- 2019-06-10 + +* 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 @@ +Copyright (c) 2019, Joe Crayne + +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 Joe Crayne 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. diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..9a994af --- /dev/null +++ b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = 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 @@ +cabal-version: >=1.10 +-- Initial package description 'wavefront-obj.cabal' generated by 'cabal +-- init'. For further documentation, see +-- http://haskell.org/cabal/users-guide/ + +name: wavefront-obj +version: 0.1.0.0 +synopsis: Wavefront OBJ parser, triangulation algorithms, Collada format types +-- description: +-- bug-reports: +license: BSD3 +license-file: LICENSE +author: Joe Crayne +maintainer: joe@jerkface.net +-- copyright: +category: Graphics +build-type: Simple +extra-source-files: CHANGELOG.md + +library + 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 + -- other-modules: + other-extensions: ForeignFunctionInterface, UnicodeSyntax, TupleSections, OverloadedStrings, NamedFieldPuns, FlexibleContexts, ScopedTypeVariables, OverloadedLists, TemplateHaskell, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, DuplicateRecordFields, StandaloneDeriving, DeriveFunctor, UndecidableInstances, DeriveFoldable, BangPatterns, PatternSynonyms + 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 + hs-source-dirs: src + default-language: Haskell2010 -- cgit v1.2.3