After installing gStreamer SDK Installed from here I am now attempting to compile and run the tutorial files that come with it, using Visual studio 2015. Tutorial documentation here
Given that these were originally made in VS2010 I had to upgrade the tutorial projects in order to even use them. Next I had to add my include directories leaving me with only a set of LNK2019 unresolved external symbol errors
At this point I feel solving this is a bit beyond me given the variety of possible causes listed on the msdn website.
For Tutorial 1 I have 16 LNK2019 errors eg.
Error LNK2019 unresolved external symbol _gst_object_unref referenced in function _main basic-tutorial-1
All 16 errors related to the following "external symbols"
_gst_object_unref
_gst_mini_object_unref
_gst_bus_timed_pop_filtered
_gst_element_get_bus
_gst_element_set_state
_gst_parse_launch
_gst_init
Searching file contents in my gStreamer SDK directory I find all these occur in
D:\gstreamer-sdk\0.10\x86_64\lib\libgstreamer-0.10.dll.a
So I am assuming that the issue is related to the linking of the libgstreamer-0.10.dll.a lib.
Anymore details I should provide? Any suggestions?