Question

Found trunk here: http://virtual-treeview.googlecode.com/svn/trunk/

Downloaded files... Worked through some errors with search paths (VirtualTreesD could not locate required package "dclstd" - it was in lib/win32/release, added it to library Delphi paths)

When I try build all I get following errors:

[DCC Fatal Error] VirtualTreesR.dpk(29): E2225 Never-build package 'dclstd' must be recompiled [DCC Fatal Error] VirtualTreesD.dpk(35): E2202 Required package 'VirtualTreesR' not found

Was it helpful?

Solution

The trunk version of VirtualTreesR does not require dclstd. The error message you report says it does, so it looks like you erroneously added dclstd to the run-time package's list of required packages. Revert that change. The run-time package should not require dclstd, which is a design-time package. It should require only vcl and vclx.

OTHER TIPS

Try to change target platform in project's group from Windows 64 to 32.

Compiler try search dclstd.dcp file, this file location is for ej. win 32 in debug "lib\win32\debug".

Fix: in the tool/option/delphi option/library add $(BDSLIB)\$(Platform)\release and $(BDSLIB)\$(Platform)\debug

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top