nickgillian / grt

gesture recognition toolkit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compile the GRT library in windows

khaledwaly opened this issue · comments

While compiling ALL_BUILD.vcxproj, there are a large number of LNK2019 errors
should i start with Visual Studio Linking Instructions before runing ALL_BUILD.vcxproj ?!

I was wondering if you have any suggestions on fixing this @nickgillian @Ehekatl @roastedchiken @morphogencc @pradeept12

UPDATE: Actually I have neglected the errors in the ALL_BULD.vcxproj files and followed the Visual Studio Linking Instructions and was able to run the test code in the build page. Still wondering if these errors will have an effect later on

I was able to get around this by just adding every .h and .cpp file to my project; it's not ideal (a .dll and .lib would be better for portability), but it works for now.

I think these link errors are related to the unit tests and examples not GRT itself.

Following the build instructions I just successfully built GRT on Windows 10, VS 2015, but had many link errors of the form:

Severity Code Description Project File Line Suppression State
Error LNK2019 unresolved external symbol "__declspec(dllimport) public: __thiscall GRT::ClassifierUnitTestHelper::ClassifierUnitTestHelper(void)" (_imp??0?$ClassifierUnitTestHelper@VAdaBoost@GRT@@@GRT@@QAE@XZ) referenced in function "private: virtual void __thiscall AdaBoost_TestDefaultConstructor_Test::TestBody(void)" (?TestBody@AdaBoost_TestDefaultConstructor_Test@@EAEXXZ) AdaBoostUnitTest C:\Users\Jamie Bullock\Documents\grt\build\tmp\AdaBoostUnitTest.obj 1

This, for example, relates to the AdaBoost unit test, not to grt.lib or grt.dll which were built successfully.

I suspect that the object files that are failing to link do not have grt itself added their respective linker settings.

Further, you can disable tests / examples / tools with flags to make:

cmake -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TOOLS=OFF ..