Bug #890
closedSingle library directory
Description
I use Cmake to produce Visual Studio 2010 solution and project.
After build, wt libraries are stored in many directories :
src\$(Configuration)
src\http\$(Configuration)
src\wt\Ext\$(Configuration)
...
It would be more user friendly if all libraries were in a single directory
Only one additional library directory would need to be specified in user projects that depend on wt
Updated by Koen Deforche over 13 years ago
- Status changed from New to InProgress
- Assignee set to Wim Dumon
Updated by Wim Dumon over 13 years ago
- Status changed from InProgress to Resolved
If you build the 'INSTALL' project in the VS solution, the header files and libraries will be copied in the directory pointed to by CMAKE_INSTALL_PREFIX. All lib files and header files will be conveniently installed respectively in lib/ and include/, where your external projects can point to.
CMAKE_INSTALL_PREFIX defaults to c:/Program Files/WT, but you can really point it to anywhere you like.
Updated by Koen Deforche over 13 years ago
- Status changed from Resolved to Closed