Thanks, I have it now building and will report back with the results. I had to change the build script to use a slightly different version of VS 2019 community which is installed on a different drive than the build script used in order to build it since I’m running a newer version. Hopefully the minor difference in version won’t cause any issues.
Build completes fine, however I get one test failure:
Ran 48 tests, with 176 assertions in 7.98758 s
47 tests passed, 0 skipped and 1 tests FAILED
Wrote test config file: unittest_mdfgag.cfg
test failed test_socket
Traceback (most recent call last):
File "./scripts/build.py", line 2142, in <module>
f()
File "./scripts/build.py", line 1037, in build_engine
self._build_engine_lib(args, lib, target_platform)
File "./scripts/build.py", line 988, in _build_engine_lib
run.env_command(self._form_env(), args + plf_args + self.waf_options + skip_build_tests, cwd = cwd)
File "S:\defold\defold\build_tools\run.py", line 63, in env_command
return _exec_command(args, shell = False, stdout = None, env = env, **kwargs)
File "S:\defold\defold\build_tools\run.py", line 41, in _exec_command
raise ExecException(process.returncode, output)
run.ExecException
EDIT: I pressed forward with trying to get the editor working despite the test issue. I followed the steps in the editor/README.md however when I run lein init I see:
Initializing editor with version 'null', resolved to 'null'
Installing ../com.dynamo.cr/com.dynamo.cr.bob/lib/openmali.jar
Installing S:\defold\defold\editor\share\java\bob.jar
org.eclipse.aether.installation.InstallationException: Failed to install artifact com.defold.lib:bob:jar:1.0: S:\defold\defold\editor\share\java\bob.jar (The system cannot find the path specified)
at org.eclipse.aether.internal.impl.DefaultInstaller.install (DefaultInstaller.java:309)
org.eclipse.aether.internal.impl.DefaultInstaller.install (DefaultInstaller.java:245)
org.eclipse.aether.internal.impl.DefaultInstaller.install (DefaultInstaller.java:188)
org.eclipse.aether.internal.impl.DefaultInstaller.install (DefaultInstaller.java:145)
org.eclipse.aether.internal.impl.DefaultRepositorySystem.install (DefaultRepositorySystem.java:374)
...
I searched for the missing file (bob.jar) which I built successfully. However it shows up in the “defold\tmp\dynamo_home\share\java” directory not in the editor directory.
Thanks for any help anyone can provide