mirror of https://gitlab.com/basile.b/dexed.git
added coedit project to test mixin err mesg
This commit is contained in:
parent
05643cd32d
commit
ec4ddf1305
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
writeln("hello runnable module);
|
|
@ -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"));
|
||||
}
|
Loading…
Reference in New Issue