Actions
Bug #352
closedTypo in cmake/FindWt.cmake
Status:
Closed
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
05/12/2010
Due date:
% Done:
0%
Estimated time:
Description
In line 78, there is a small copy&paste error.
Instead of:
IF( Wt_DBOPOSTGRES_LIBRARY )
SET( Wt_LIBRARIES ${Wt_LIBRARIES} ${Wt_DBOPOSTGRES_LIBRARY} )
ENDIF( Wt_DBOSQLITE3_LIBRARY )
it should be:
IF( Wt_DBOPOSTGRES_LIBRARY )
SET( Wt_LIBRARIES ${Wt_LIBRARIES} ${Wt_DBOPOSTGRES_LIBRARY} )
ENDIF( Wt_DBOPOSTGRES_LIBRARY )
Updated by Koen Deforche almost 15 years ago
- Status changed from New to Resolved
Hey Maximilian.
Thanks for catching this!
koen
Actions