Created
September 4, 2013 18:42
-
-
Save antonijn/6441045 to your computer and use it in GitHub Desktop.
For the "create-noob" command line operation for bohp.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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