packages feed

cmake-syntax-0.1.0.0: cmake-syntax.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 26bcc743c2398b409fec017473b905cf77d41b0b8ec9abe5cf6b0ae91e461e2c

name:           cmake-syntax
version:        0.1.0.0
synopsis:       Parser for the CMake syntax (CMakeLists.txt and .cmake files)
description:    Please see the README on GitHub at <https://github.com/0xd34df00d/cmake-syntax#readme>
category:       Language
homepage:       https://github.com/0xd34df00d/cmake-syntax#readme
bug-reports:    https://github.com/0xd34df00d/cmake-syntax/issues
author:         Georg Rudoy
maintainer:     0xd34df00d@gmail.com
copyright:      2019 Georg Rudoy
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/0xd34df00d/cmake-syntax

library
  exposed-modules:
      Language.CMake.AST
      Language.CMake.Parser
  other-modules:
      Paths_cmake_syntax
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base >=4.7 && <5
    , bytestring
    , raw-strings-qq
    , trifecta
  default-language: Haskell2010

test-suite cmake-syntax-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_cmake_syntax
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , bytestring
    , cmake-syntax
    , hspec
    , raw-strings-qq
    , trifecta
  default-language: Haskell2010