Skip to content

Commit ee823f9

Browse files
committed
Build tools
1 parent 491ab8b commit ee823f9

4 files changed

+27
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.stack-work/
22
*~
3+
*.so

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
LIBFILE = $(shell stack path --local-install-root)/lib/libgodot-haskell-plugin.so
2+
PROJECTROOT = $(shell stack path --project-root)
3+
all:
4+
stack build
5+
cp $(LIBFILE) $(PROJECTROOT)

godot-haskell-plugin.gdns

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[gd_resource type="NativeScript" load_steps=2 format=2]
2+
3+
[ext_resource path="res://libgodot-haskell-plugin.gdnlib" type="GDNativeLibrary" id=1]
4+
5+
[resource]
6+
7+
library = ExtResource( 1 )
8+

libgodot-haskell-plugin.gdnlib

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[general]
2+
3+
singleton=false
4+
load_once=true
5+
symbol_prefix="godot_"
6+
7+
[entry]
8+
9+
X11.64="res://libgodot-haskell-plugin.so"
10+
11+
[dependencies]
12+
13+
X11.64=[]

0 commit comments

Comments
 (0)