The kanban board is now a proper tool alongside migration-analyser. Adds tools/kanban/project.xml (blaise-kanban module) and registers it in the root aggregator. Removes the standalone build.sh script since PasBuild handles compilation.
19 lines
498 B
XML
19 lines
498 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<name>blaise-kanban</name>
|
|
<!-- version inherited from root aggregator -->
|
|
|
|
<build>
|
|
<packaging>application</packaging>
|
|
<mainSource>kanban_app.pas</mainSource>
|
|
<executableName>kanban</executableName>
|
|
|
|
<manualUnitPaths>true</manualUnitPaths>
|
|
<unitPaths>
|
|
<path>src/main/pascal</path>
|
|
<path>../../runtime/src/main/pascal</path>
|
|
<path>../../stdlib/src/main/pascal</path>
|
|
</unitPaths>
|
|
</build>
|
|
</project>
|