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.
48 lines
1.1 KiB
XML
48 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<name>blaise</name>
|
|
<version>0.10.0-SNAPSHOT</version>
|
|
<author>Graeme Geldenhuys</author>
|
|
<license>Apache-2.0 WITH Swift-exception</license>
|
|
|
|
<build>
|
|
<packaging>pom</packaging>
|
|
</build>
|
|
|
|
<modules>
|
|
<module activeByDefault="false">runtime</module>
|
|
<module activeByDefault="false">stdlib</module>
|
|
<module>compiler</module>
|
|
<module>tools/migration-analyser</module>
|
|
<module>tools/kanban</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>debug</id>
|
|
<defines>
|
|
<define>DEBUG</define>
|
|
</defines>
|
|
<compilerOptions>
|
|
<option>-g</option>
|
|
<option>-gl</option>
|
|
<option>-Criot</option>
|
|
<option>-gh</option>
|
|
</compilerOptions>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>release</id>
|
|
<defines>
|
|
<define>RELEASE</define>
|
|
</defines>
|
|
<compilerOptions>
|
|
<option>-O2</option>
|
|
<option>-CX</option>
|
|
<option>-XX</option>
|
|
<option>-Xs</option>
|
|
</compilerOptions>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|