Almas Baim
Almas Baim
This is looking good! On Thu, 10 Dec 2020, 6:12 pm Andres Almiray, wrote: > Alright, so I did some investigation and I found the following: > > - built...
Thanks for the output, I'll take a look
@jperedadnr when testing `load()` for maya importer we need to instantiate javafx app, otherwise `Internal graphics not initialized yet` will happen when attempting to construct an `Image`. I usually work...
Forgot it existed in 9+ :) Now here's another concern: say we have test1 and test2, both need javafx to be inited because of the above. If I run `startup()`...
I'll give it a go, thanks. I wonder if this generalises to other tests, i.e. not in the same test file ...
Right. Here's what we have: TestClass1.java has test1() TestClass2.java has test2() 1) If both TestClass1 and TestClass2 have `startup()` with `@BeforeAll` then `Toolkit already initialized` error 2) If only one...
Great idea. As far as I know junit 5 doesn't have rules - everything is an `Extension`, but the idea is the same.
With respect to (1), I think javah functionality is now part of javac: ``` javac -h . ClassWithNativeCode.java ``` I just recently had to use it to build some C++/Java...
The .cpp is linked against: ``` "$(FBX_SDK_HOME)lib/vs2012/x64/release" /libpath:"$(WIN_SDK_HOME)Lib/x64" AdvAPI32.lib libfbxsdk-mt.lib ``` I've skimmed through the [Windows FBX SDK config](https://help.autodesk.com/view/FBX/2016/ENU/?guid=__files_GUID_6E7B1A2E_584C_49C6_999E_CD8367841B7C_htm) and I can see the `libfbxsdk-mt.lib` file. So, I might be...
Yes we include our .dll with FXyz. As for their (FBX) .dll, this is where license comes in I think. If we ask users to download from the official site,...