41 lines
924 B
XML
41 lines
924 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<name>blaise</name>
|
|
<version>0.13.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>
|
|
<module>tools/bif-coverage</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>debug</id>
|
|
<defines>
|
|
<define>DEBUG</define>
|
|
</defines>
|
|
<compilerOptions>
|
|
<option>--debug</option>
|
|
<option>--debug-opdf</option>
|
|
</compilerOptions>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>release</id>
|
|
<defines>
|
|
<define>RELEASE</define>
|
|
</defines>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|