|
How to compileTo use this library all you have to do is extract it somewhere, make sure the folder containing the dlib folder is in your include path, and finally add dlib/all/source.cpp to your project. It is worth noting that most of dlib is "header-only" which means that, in many cases, you don't actually have to build dlib/all/source.cpp into your application. So if you don't get linker errors when you exclude dlib/all/source.cpp from your project then you don't need it. An example makefile that uses this library can be found here: dlib/test/makefile. It is the makefile used to build the regression test suite for this library. There is also a CMake makefile that builds the regression test suite at dlib/test/CMakeLists.txt and another CMake makefile that builds all the example programs at examples/CMakeLists.txt I try to make sure everything compiles fine under Visual Studio .NET 2005 (and above) and gcc (3.4 and above). Again, note that you should not add the dlib folder itself to your compiler's include path. Doing so will cause the build to fail because of name collisions (such as dlib/string.h and string.h from the standard library). Instead you should add the folder that contains the dlib folder to your include search path and then use include statements of the form #include <dlib/queue.h>. This will ensure that everything builds correctly. Finally, note that dlib/revision.h defines DLIB_REVISION which is a #define you can use to see what version of dlib you have. The number in this file is the subversion revision number associated with the particular copy of dlib you have. Preprocessor DirectivesThere are a few preprocessor directives you can supply during the build process to cause the library to build in various optional ways. Most people will probably not want to mess with these at all and will just use the library in its default build. But they are listed here in the event that you need to use them. #define DLIB_ISO_CPP_ONLYThis is a #define directive that you can set to cause the library to exclude all non ISO C++ code (The things in the API wrappers section and any objects that depend on those wrappers). This is useful if you are trying to build on a system that isn't fully supported by the library or if you just decide you don't want any of that stuff compiled into your program for your own reasons. #define DLIB_NO_GUI_SUPPORTThis is just like the DLIB_ISO_CPP_ONLY option except that it excludes only the GUI part of the library. An example of when you might want to use this would be if you don't need GUI support and you are building on a UNIX platform that doesn't have the X11 headers installed. #define NO_MAKEFILEThis preprocessor directive causes the dlib headers to pull in all the code that would normally be built in dlib/all/source.cpp. Thus if you #define NO_MAKEFILE you won't have to add dlib/all/source.cpp to your project. The only time this is useful is when your project consists of a single translation unit (i.e. a single cpp file). In this instance NO_MAKEFILE allows you to easily build your project on the command line by saying something like g++ -DNO_MAKEFILE project.cpp. But again, this is only for single cpp file projects. If you use NO_MAKEFILE with projects that contain more than one cpp file you will get linker errors about multiply defined symbols. Also note that if you use this macro then the stack trace functionality in the library will be disabled. #define DLIB_THREAD_POOL_TIMEOUT <time-in-milliseconds>If you use dlib to create your threads then you receive the benefit of the dlib dynamic thread pool (Note that the dlib::thread_pool object is something else unrelated to this so don't confuse the two). This pool enables dlib to spawn new threads very rapidly since it draws threads back out of its thread pool when the pool isn't empty. Thus, when a thread that was created by dlib ends it actually goes back into the dlib thread pool and waits DLIB_THREAD_POOL_TIMEOUT milliseconds before totally terminating and releasing its resources back to the operating system. The default timeout used by this library is 30,000 milliseconds (30 seconds). You may however change this to whatever you like by defining DLIB_THREAD_POOL_TIMEOUT to some new value. Compiler NotesgccI generally use the newest version of gcc but most other versions of gcc work just fine also. The command line I generally use is "g++ -D NO_MAKEFILE -lnsl -lpthread file.cpp" I think you need to tell it to link nsl to make the threading stuff work right, I honestly can't remember what part of the library requires it I have just been doing it for so long :) If you are using the sockets stuff then on some platforms you need to supply the -lsocket option. Or if you are using the gui stuff you will need to supply the -lX11 option. If you compile on solaris you have to give the -lsocket option if you use the sockets API. gcc on windowsThe commands for gcc on windows are the same as above but you may also have to link (via the -l option) to the following libraries: gdi32, comctl32, user32, ws2_32, or imm32. |