blaise/tools/bif-coverage/project.xml
Graeme Geldenhuys 5754ca254b build(bif-coverage): add stdlib unit path so it builds by default
The tool is now activeByDefault, so it is reached by a plain
'pasbuild compile'. With manualUnitPaths=true it only searches the listed
paths, which lacked the stdlib directory where SysUtils and the other
units it uses live, so the default build failed with 'Unit SysUtils not
found'. Add ../../stdlib/src/main/pascal, mirroring the compiler module's
own stdlib unit path.
2026-06-29 12:29:55 +01:00

19 lines
528 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project>
<name>blaise-bif-coverage</name>
<build>
<packaging>application</packaging>
<mainSource>BifCoverage.pas</mainSource>
<executableName>bif-coverage</executableName>
<manualUnitPaths>true</manualUnitPaths>
<unitPaths>
<path>src/main/pascal</path>
<path>../../compiler/src/main/pascal</path>
<!-- SysUtils and other stdlib units the analyser uses. -->
<path>../../stdlib/src/main/pascal</path>
</unitPaths>
</build>
</project>