Reputation: 4506
I have a Visual C++ dll project. The dll can be created, but the lib isn't generated. Which project propery should I modify to ouput the lib?
Upvotes: 0
Views: 992
Reputation: 13690
Alternatively you can use __declspec(dllexport)
to define exported symbols.
Upvotes: 3
Reputation: 3234
Do you export some symbol? Without exporting something, lib is not generated.
Upvotes: 2