mirror of
https://github.com/Drezil/dear-implot.hs.git
synced 2024-11-22 04:27:00 +00:00
links correctly now.
This commit is contained in:
parent
46b499e864
commit
9a62697e8d
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -4,4 +4,4 @@
|
|||||||
branch = v0.13
|
branch = v0.13
|
||||||
[submodule "dear-imgui.hs"]
|
[submodule "dear-imgui.hs"]
|
||||||
path = dear-imgui.hs
|
path = dear-imgui.hs
|
||||||
url = https://github.com/haskell-game/dear-imgui.hs
|
url = https://github.com/drezil/dear-imgui.hs
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
packages: *.cabal
|
packages: *.cabal
|
||||||
|
dear-imgui.hs
|
||||||
package dear-implot
|
package dear-implot
|
||||||
ghc-options: -Wall -Wcompat -fno-warn-unused-do-bind
|
ghc-options: -Wall -Wcompat -fno-warn-unused-do-bind
|
||||||
|
|
||||||
|
shared: true
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit e5969f6b358dab01d9e2bea8d3538fdfbee0c2f1
|
Subproject commit 51a634c7818d120ec43d4d4ee4392adc1d224128
|
@ -2,6 +2,21 @@ cabal-version: 3.0
|
|||||||
name: dear-implot
|
name: dear-implot
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
extra-source-files:
|
||||||
|
README.md,
|
||||||
|
CONTRIBUTING.md,
|
||||||
|
implot/*.h,
|
||||||
|
implot/LICENSE,
|
||||||
|
dear-imgui.hs/imgui/*.h,
|
||||||
|
dear-imgui.hs/imgui/LICENSE.txt
|
||||||
|
|
||||||
|
flag use-wchar32
|
||||||
|
description:
|
||||||
|
Use 32-bit for ImWchar (default is 16-bit) to support unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...)
|
||||||
|
default:
|
||||||
|
True
|
||||||
|
manual:
|
||||||
|
True
|
||||||
|
|
||||||
library
|
library
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
@ -27,20 +42,28 @@ library
|
|||||||
Haskell2010
|
Haskell2010
|
||||||
ghc-options:
|
ghc-options:
|
||||||
-Wall
|
-Wall
|
||||||
|
install-includes:
|
||||||
|
implot/implot.h
|
||||||
|
implot/implot_internal.h
|
||||||
cxx-sources:
|
cxx-sources:
|
||||||
implot/implot.cpp
|
implot/implot.cpp
|
||||||
|
implot/implot_demo.cpp
|
||||||
implot/implot_items.cpp
|
implot/implot_items.cpp
|
||||||
cxx-options:
|
cxx-options:
|
||||||
-std=c++11
|
-std=c++11
|
||||||
extra-libraries:
|
extra-libraries:
|
||||||
stdc++
|
stdc++
|
||||||
|
--HSdear-imgui-1.4.0-inplace
|
||||||
include-dirs:
|
include-dirs:
|
||||||
implot
|
implot
|
||||||
dear-imgui.hs/imgui
|
dear-imgui.hs/imgui
|
||||||
|
if flag(use-wchar32)
|
||||||
|
cxx-options: -DIMGUI_USE_WCHAR32
|
||||||
|
cpp-options: -DIMGUI_USE_WCHAR32
|
||||||
build-depends: base
|
build-depends: base
|
||||||
, StateVar
|
, StateVar
|
||||||
, containers
|
, containers
|
||||||
, dear-imgui >= 1.4.0
|
, dear-imgui == 1.4.0
|
||||||
, inline-c
|
, inline-c
|
||||||
, inline-c-cpp
|
, inline-c-cpp
|
||||||
, managed
|
, managed
|
||||||
|
Loading…
Reference in New Issue
Block a user