| 69 | === Q: CMake complains about a missing dependency directory === |
| 70 | |
| 71 | A: You probably get an error like this: |
| 72 | {{{ |
| 73 | $ cm |
| 74 | [...] |
| 75 | -- *** Build type is Debug *** |
| 76 | -- Warning: Could not find dependency directory.Disable LIBRARY_USE_PACKAGE if you have none intalled. |
| 77 | [...] |
| 78 | }}} |
| 79 | In this case you didn't put the dependency package into the right directory. Please refer to [wiki:WindowsMinGW/current#Dependencies the guide] for more information about the dependency package and where to place it. Also make sure that you don't use two nested dependency directories (i.e. {{{/home/username/dependencies/dependencies}}}) but just one. |
| 80 | |