Skip to content

Commit

Permalink
config: add the plugin release files
Browse files Browse the repository at this point in the history
  • Loading branch information
Goutte committed Jun 15, 2022
1 parent af87681 commit b303905
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MIT
9 changes: 5 additions & 4 deletions addons/goutte.template.inja/inja.gdextension
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ entry_symbol = "initialize_ginja_extension"

[libraries]

linux.debug.x86_64 = "bin/libgdinja.linux.debug.x86_64.so"
linux.release.x86_64 = "bin/libgdinja.linux.release.x86_64.so"
linux.debug.x86_32 = "bin/libgdinja.linux.debug.x86_32.so"
linux.debug.x86_64 = "bin/libgdinja.linux.debug.x86_64.so"
linux.release.x86_32 = "bin/libgdinja.linux.release.x86_32.so"
linux.release.x86_64 = "bin/libgdinja.linux.release.x86_64.so"

windows.debug.x86_64 = "bin/libgdinja.windows.debug.x86_64.dll"
windows.release.x86_64 = "bin/libgdinja.windows.release.x86_64.dll"
windows.debug.x86_32 = "bin/libgdinja.windows.debug.x86_32.dll"
windows.debug.x86_64 = "bin/libgdinja.windows.debug.x86_64.dll"
windows.release.x86_32 = "bin/libgdinja.windows.release.x86_32.dll"
windows.release.x86_64 = "bin/libgdinja.windows.release.x86_64.dll"

# Mac does not have 32bits support in godot-cpp
macos.debug = "bin/libgdinja.osx.debug.x86_64.framework"
macos.release = "bin/libgdinja.osx.release.x86_64.framework"

Expand Down
7 changes: 7 additions & 0 deletions addons/goutte.template.inja/plugin.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[plugin]

name="Ginja String Templating"
description="Ginja is a bridge for the Inja templating engine, loosely inspired by jinja for python. It has an easy and yet powerful template syntax with all variables, loops, conditions, includes, functions, and comments you need, nested and combined as you like. This plugin is a GdExtension, so it comes with some limitations. See the repository for more information: https://github.com/Goutte/godot-addon-ginja/"
author="Goutte"
version="1.0"
script="plugin.gd"
7 changes: 0 additions & 7 deletions addons/goutte.template.inja/plugin.cfg.old

This file was deleted.

12 changes: 12 additions & 0 deletions addons/goutte.template.inja/plugin.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
tool
extends EditorPlugin

# The GdExtension is automatically loaded,
# and it makes the Ginja object available already.
# Perhaps we'll add some sugar nodes here later?

func _enter_tree():
pass

func _exit_tree():
pass

0 comments on commit b303905

Please sign in to comment.