Skip to content

Instantly share code, notes, and snippets.

@antonijn
Created September 4, 2013 18:42
Show Gist options
  • Save antonijn/6441045 to your computer and use it in GitHub Desktop.
Save antonijn/6441045 to your computer and use it in GitHub Desktop.
For the "create-noob" command line operation for bohp.
<project>
<configurations>
<configuration>
<name>Debug</name>
<debug>true</debug>
<outputdir>debug</outputdir>
<output><!-- insert suffix-less output binary name here --></output>
<desktop>true</desktop>
<allarchs>false</allarchs>
<alloss>false</alloss>
</configuration>
<configuration>
<name>Release</name>
<debug>false</debug>
<outputdir>release</outputdir>
<output><!-- insert suffix-less output binary name here --></output>
<desktop>false</desktop>
<allarchs>true</allarchs>
<alloss>true</alloss>
</configuration>
</configurations>
<input>
<!-- example
<external>libexample1</external>
<external>libc</external>
<file>src/example/File1.boh</file>
<file>src/example/File2.boh</file>
<file configurations="Debug">src/example/File3.boh</file>
<file configurations="Debug">src/cfiles/file.c</file>
-->
</input>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment