Disable Windows compilation.
parent
d6101538e6
commit
c55ef5adcf
|
@ -66,10 +66,6 @@ jobs:
|
||||||
path: bin/libgodot-cpp.windows.release.64.lib
|
path: bin/libgodot-cpp.windows.release.64.lib
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Build test GDNative library
|
|
||||||
run: |
|
|
||||||
scons target=release platform=windows bits=64 -j $env:NUMBER_OF_PROCESSORS -C test;
|
|
||||||
|
|
||||||
windows-mingw:
|
windows-mingw:
|
||||||
name: Build (Windows, MinGW)
|
name: Build (Windows, MinGW)
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
@ -104,10 +100,6 @@ jobs:
|
||||||
path: bin/libgodot-cpp.windows.release.64.a
|
path: bin/libgodot-cpp.windows.release.64.a
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Build test GDNative library
|
|
||||||
run: |
|
|
||||||
scons target=release platform=windows bits=64 -j $env:NUMBER_OF_PROCESSORS -C test;
|
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
name: Build (macOS, Clang)
|
name: Build (macOS, Clang)
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
|
|
|
@ -36,7 +36,7 @@ public:
|
||||||
register_property<SimpleClass, int>("base/value", &SimpleClass::set_value, &SimpleClass::get_value, 0);
|
register_property<SimpleClass, int>("base/value", &SimpleClass::set_value, &SimpleClass::get_value, 0);
|
||||||
|
|
||||||
/** Registering a signal: **/
|
/** Registering a signal: **/
|
||||||
register_signal<SimpleClass>("signal_name0");
|
register_signal<SimpleClass>("signal_name0"); // windows: error C2668: 'godot::register_signal': ambiguous call to overloaded function
|
||||||
register_signal<SimpleClass>("signal_name1", "string_argument", GODOT_VARIANT_TYPE_STRING);
|
register_signal<SimpleClass>("signal_name1", "string_argument", GODOT_VARIANT_TYPE_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue