dear-implot.hs/dear-implot.cabal

59 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-02-21 19:04:25 +00:00
cabal-version: 3.0
name: dear-implot
version: 1.0.0
build-type: Simple
library
exposed-modules:
DearImGui.Raw.Plot
2021-02-21 19:04:25 +00:00
DearImGui.Plot
2022-03-18 18:30:15 +00:00
other-modules:
DearImGui.Plot.Generator
DearImGui.Plot.Generator.Parser
DearImGui.Plot.Context
DearImGui.Plot.Enums
DearImGui.Plot.Structs
--- from imgui via symlink:
DearImGui.Generator
DearImGui.Generator.Parser
DearImGui.Generator.Tokeniser
DearImGui.Generator.Types
DearImGui.Structs
DearImGui.Enums
DearImGui.Context
2021-02-21 19:04:25 +00:00
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall
cxx-sources:
implot/implot.cpp
implot/implot_items.cpp
cxx-options:
-std=c++11
extra-libraries:
stdc++
include-dirs:
implot
2022-03-18 18:30:15 +00:00
dear-imgui.hs/imgui
2021-02-21 22:55:19 +00:00
build-depends: base
, StateVar
, containers
, dear-imgui >= 1.4.0
2021-02-21 22:55:19 +00:00
, inline-c
, inline-c-cpp
, managed
2022-03-18 18:30:15 +00:00
, template-haskell
, directory
, filepath
, text
, megaparsec
, parser-combinators
, scientific
, unordered-containers
, th-lift
, transformers
, vector
, unliftio