Enable C ++ Library in NetBeans 7.0

I am trying to use this library (RollPlay) in my project, but I do not know how to include it in my C ++ project in Netbeans. Will I just add .dll and .h files to the project folder, add files to the project? I am new to Netbeans and use non-built-in libraries.

+2
source share
1 answer

The library will usually be in its own installation directory, so you need to tell NB where it is. If you right-click the project name in the Projects window, you will have the Properties option.

  • Select the Build / C ++ compiler option to add a directory for .h files.
  • Select Build / Linker to add the directory for the DLL file.
+5

All Articles