Try adding a ./ in the beginning.This step wont let me, i dont know how to install libraries??
Can you help me please? I've been trying to compile for hours now.If you are trying to compile latest tfs 1.3, then thats not how you do it.
Is there a difference between the TFS tutorial (steps 2 + 4) and the vcpkg quick start tutorial?did you only install vcpkg or did you do the rest of the steps?
i've never had a problem with compiling with the new tutorial, all you have to do is follow the steps exactly and it works fine
and yes, those are blank because vcpkg handles it for you + your vs installation settings are fine
are you installing while vs is closed?
The best way to use installed libraries with CMake is via the toolchain file scripts\buildsystems\vcpkg.cmake. To use this file, you simply need to add it onto your CMake command line as -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake.
yes there's a difference, you're supposed to follow the tfs tutorial not just installing vcpkgIs there a difference between the TFS tutorial (steps 2 + 4) and the vcpkg quick start tutorial?
Do I need to perform the CMake steps in the vcpkg quick start tutorial? Because that is the only thing I didn't do so far (I'm at work right now, will be able to test it later).
By the way, in the old method of compiling TFS, the .bat files never worked for me.Code:The best way to use installed libraries with CMake is via the toolchain file scripts\buildsystems\vcpkg.cmake. To use this file, you simply need to add it onto your CMake command line as -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake.
I executed them in the right folders, but those would not set the paths to the includes and libs, I had to do it manually, for some reason I never found out (it happened to a lot of people).
Thanks again!
I installed those with no errors.you need to install the libs in step 4 to be able to compile
Thanks, once I added "\" before it install all libraries properly then compile was 100% without having to add #includesTry adding a ./ in the beginning.