-1

i try to insert fmt library to my project, but i don't really know what miss. if i complile it's everything ok, but when i want to use fmt::format function, i get errors... https://i.stack.imgur.com/M9IE3.jpg

https://i.stack.imgur.com/TwQFZ.jpg

https://i.stack.imgur.com/myZlp.jpg i make .lib file but again don't work

i try to make my own .lib file but dont't work. What i missed doing?

vitaut
  • 49,672
  • 25
  • 199
  • 336

1 Answers1

1

You need to add the library to your project not just the include directory. Look at Project Properties/Linker/General/Additional Library Directories and Project Properties/Linker/Input/Additional Dependencies. You put the directory where the library is in the first one, and the name of the library (with .lib extension) in the second one

john
  • 85,011
  • 4
  • 57
  • 81