Get module file path from ModuleInfo

2019-06-05 Thread Andre Pany via Digitalmars-d-learn
Hi, I want to enhance a unittest framework to also report the results in SonarQube Generic Execution format. This format lists the file paths. The unittest framework loops through the modules and collects the module name and the unittests: foreach (moduleInfo; ModuleInfo) { if

Not able to use this C++ library in D

2019-06-05 Thread rnd via Digitalmars-d-learn
I am trying to use C++ DCMTK library ( https://dcmtk.org/ ) functions in D. A relevant reference page is https://support.dcmtk.org/docs/classDcmFileFormat.html#details Following is C++ code modified from https://stackoverflow.com/questions/5052148/how-to-use-dcmtk-in-qt #include

-v lots of junk

2019-06-05 Thread Amex via Digitalmars-d-learn
Using -v I get a whole list(100's) of stuff that is irrelevant: ... import core.sys.windows.w32api (C:\dmd2\windows\bin\..\..\src\druntime\import\core\sys\windows\w32api.d) import core.sys.windows.basetyps (C:\dmd2\windows\bin\..\..\src\druntime\import\core\sys\windows\basetyps.d) import

Re: What external libraries are available

2019-06-05 Thread 9il via Digitalmars-d-learn
On Wednesday, 5 June 2019 at 01:20:46 UTC, Mike Brockus wrote: If you never herd about Meson before: 樂. https://mesonbuild.com/ Hay there I was just wondering, what is the D equivalent to C++ Boost and or Poco libraries? Just wondering because I would like to start playing with other

Re: What external libraries are available

2019-06-05 Thread Jacob Carlborg via Digitalmars-d-learn
On 2019-06-05 03:20, Mike Brockus wrote: If you never herd about Meson before: 樂. https://mesonbuild.com/ Hay there I was just wondering, what is the D equivalent to C++ Boost and or Poco libraries? I don't think there are any libraries that are a direct comparison to Boost (I'm not

Re: Where can I find a reference for compiler flags?

2019-06-05 Thread Jacob Carlborg via Digitalmars-d-learn
On 2019-06-05 03:19, Mike Brockus wrote: Where can I find a reference for compiler flags? Here's the reference [1]. You can also run "dmd --help" to print out the available flags. [1] might not be up to date. [1] https://dlang.org/dmd-windows.html -- /Jacob Carlborg