diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-06-06 04:07:59 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-06-27 20:44:12 +0200 |
commit | a0fcd8a7353ab692d864d3807974a93c097fb362 (patch) | |
tree | 1c6d4c931c1c574662dbc968aad6c577cda2ac82 | |
parent | 7adc5360d79d06f296347e2247a115f60bc7ece4 (diff) | |
download | redot-cpp-a0fcd8a7353ab692d864d3807974a93c097fb362.tar.gz |
Add windows x86_32 library to example gdextension.
-rw-r--r-- | test/demo/example.gdextension | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/demo/example.gdextension b/test/demo/example.gdextension index d7c834a..d1b9023 100644 --- a/test/demo/example.gdextension +++ b/test/demo/example.gdextension @@ -6,6 +6,8 @@ entry_symbol = "example_library_init" macos.debug = "bin/libgdexample.osx.debug.framework" macos.release = "bin/libgdexample.osx.release.framework" +windows.debug.x86_32 = "bin/libgdexample.windows.debug.x86_32.dll" +windows.release.x86_32 = "bin/libgdexample.windows.release.x86_32.dll" windows.debug.x86_64 = "bin/libgdexample.windows.debug.x86_64.dll" windows.release.x86_64 = "bin/libgdexample.windows.release.x86_64.dll" linux.debug.x86_64 = "bin/libgdexample.linux.debug.x86_64.so" |