I am new to C and followed the steps in Tensorflow in C. I am able to compile and run using the below command,
gcc.exe -Iinclude -Llib test.c -ltensorflow -o test.exe
Now I want to try the same in Visual Studio and I am following the steps as in this answer.
I have provided below items in the properties window,
Linker->General->Additional Library Directories as $(SolutionDir)\\lib;
Linker->Input->Additional Dependency as tensorflow.lib;
C/C++->General->Additional Include Directories as $(SolutionDir)\\include;
However I am still getting the link error,
Severity Code Description Project File Line Suppression State
Error LNK2019 unresolved external symbol __imp__TF_Version referenced in function _main tf_lstm C:\test\tf\tf_lstm\Source.obj 1
Can someone support me here?