added coedit project to test mixin err mesg

This commit is contained in:
Basile Burg 2014-11-11 06:46:13 +01:00
parent 05643cd32d
commit ec4ddf1305
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,20 @@
object CurrentProject: TCEProject
OptionsCollection = <
item
name = 'release'
outputOptions.boundsCheck = offAlways
pathsOptions.Imports.Strings = (
'..\src\'
)
preBuildProcess.options = []
preBuildProcess.showWindow = swoNone
postBuildProcess.options = []
postBuildProcess.showWindow = swoNone
runOptions.options = [poUsePipes, poStderrToOutPut]
runOptions.showWindow = swoNone
end>
Sources.Strings = (
'..\src\mixin_errfile_main.d'
)
ConfigurationIndex = 0
end

View File

@ -0,0 +1 @@
writeln("hello runnable module);

View File

@ -0,0 +1,10 @@
module runnable;
import std.stdio;
void main(string args[])
{
// purpose: test if error message in mixed content could be clicked
// => no, the filename from where the data come is not passed
mixin(import("mixin_errfile_data.txt"));
}