-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://imgur.com/MDUYNN4

https://imgur.com/a/cFyrjty

https://imgur.com/KMu1ZTV 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
  • 43,200
  • 23
  • 168
  • 291

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
  • 72,145
  • 4
  • 50
  • 71