blaise/project.xml
Graeme Geldenhuys b7cdcd29c4 release: v0.10.0
Self-hosting fixpoint verified on 262,202 lines of QBE IR.
Mandatory () on all zero-argument calls, parallel incremental
compilation, thread-safe ARC, and 2627 tests passing.
2026-06-07 02:09:09 +01:00

48 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project>
<name>blaise</name>
<version>0.10.0</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>