Problems with VS2013 not supporting explicitly defaulted and deleted functions
I am getting a bunch of errors when building using Microsoft Visual Studio 2013, which is not supported default functions. Would you mind helping me on this?
VS2013's support for C++11 is pretty bad, so it likely won't work. Try updating your compiler version or use gcc/clang.
I had to you VS2013 with C++11 due to some restrictions. I ended up writing definitions for all the default constructors and got everything built. But not sure if everything is working correctly. Should I test it using the provided examples? When I cmake the project it couldn't find the boost.program_options, so it disable examples. What is the path that I should provide so it can point to the boost library correctly? Thank you so much!
You need to have boost installed and provide the path using -DBOOST_ROOT. In order to run the tests you need to have kafka and zookeeper installed for now, you can see how to set them up following this. Note that the script uses ubuntu so use it only as a guide.
I followed your instructions https://github.com/mfontanini/cppkafka/wiki/Compiling. But the examples still got disabled. I put the BOOST_ROOT and it is still not working.
So I just provided the path using -DBoostPROGRAM_OPTIONS_LIBRARY_DEBUG and it doesn't disable the examples anymore the it is still disable tests
Duplicate of #28 Mandy27 have you solve it .could you show me your code?