Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework extension structure and fix typo #61

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ env = SConscript("godot-cpp/SConstruct")
# - LINKFLAGS are for linking flags

# tweak this if you want to use different folders, or more folders, to store your source code in.
env.Append(CPPPATH=["extension/src/"])
sources = Glob("extension/src/*.cpp")
env.Append(CPPPATH=["src/"])
sources = Glob("src/*.cpp")

if env["platform"] == "macos":
library = env.SharedLibrary(
Expand Down
2 changes: 1 addition & 1 deletion game/bin/summator.gdextension
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ linux.debug.arm64 = "res://bin/libgdsummator.linux.template_debug.arm64.so"
linux.release.arm64 = "res://bin/libgdsummator.linux.template_release.arm64.so"
windows.x86_64.debug = "res://bin/libgdsummator.windows.template_debug.x86_64.dll"
windows.x86_64.release = "res://bin/libgdsummator.windows.template_release.x86_64.dll"
macos.debug = "res://bin/summator.macos.template_debug.framework"
macos.debug = "res://bin/libgdsummator.macos.template_debug.framework"
macos.release = "res://bin/libgdsummator.macos.template_release.framework"
2 changes: 1 addition & 1 deletion game/icon.png.import
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.cte
[params]

compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/bptc_ldr=0
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
Expand Down
8 changes: 8 additions & 0 deletions game/project.godot
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters

config_version=5

[application]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.