diff options
author | Gilles Roudière <gilles.roudiere@gmail.com> | 2022-12-07 14:11:44 +0100 |
---|---|---|
committer | Gilles Roudière <gilles.roudiere@gmail.com> | 2022-12-12 11:06:38 +0100 |
commit | c02e644679655e842dcff543f0defef973cf946c (patch) | |
tree | 67875626a128c08eca565bc3693e2dfbe36fce75 /.github/workflows | |
parent | f74c47220382a8e1a347c8dda942a95caea13a0e (diff) | |
download | redot-cpp-c02e644679655e842dcff543f0defef973cf946c.tar.gz |
Rename GDNative to GDExtension
Non-exhaustive list of case-sensitive renames:
GDExtension -> GDNative
GDNATIVE -> GDEXTENSION
gdextension -> gdnative
ExtensionExtension -> Extension (for where there was GDNativeExtension)
EXTENSION_EXTENSION -> EXTENSION (for where there was GDNATIVE_EXTENSION)
gdnlib -> gdextension
gdn_interface -> gde_interface
gdni -> gde_interface
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4665ed9..52cc11c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,7 +145,7 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release . make -j $(nproc) VERBOSE=1 - - name: Build test GDNative library + - name: Build test GDExtension library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." . make -j $(nproc) VERBOSE=1 @@ -169,7 +169,7 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release -GNinja . cmake --build . -j $(nproc) --verbose - - name: Build test GDNative library + - name: Build test GDExtension library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -GNinja . cmake --build . -j $(nproc) --verbose @@ -188,7 +188,7 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" . cmake --build . --verbose - - name: Build test GDNative library + - name: Build test GDExtension library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" . cmake --build . --verbose |