Issue
I'm trying the use this library (RollPlay) in my project but I don't know how to include it in my C++ project in Netbeans. Would I just add the .dll and .h files into the project folder, add the files to the project? I'm new to Netbeans and using non built-in libraries.
Solution
A library would normally reside in its own installation directory so you would need to point NB to where that is. If you right-click the project name in the "Projects" window, you'll have a Properties option.
- Select the Build/C++ compiler option to add the directory for the .h files.
- Select the Build/Linker to add the directory for the dll file.
Answered By - Captain Giraffe
Answer Checked By - Marilyn (JavaFixing Volunteer)