Thread overview
VisualD solution configuration
Dec 02, 2012
Zhenya
Dec 02, 2012
Lubos Pintes
Dec 02, 2012
Zhenya
Dec 02, 2012
Zhenya
Dec 02, 2012
Zhenya
Dec 02, 2012
Regan Heath
Dec 02, 2012
Zhenya
December 02, 2012
Hi!
I'm sorry,maybe it is a little bit stupid question,but how to configure VisualD project to get it compile not only main.d but all files in project?
December 02, 2012
Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
> Hi!
> I'm sorry,maybe it is a little bit stupid question,but how to configure
> VisualD project to get it compile not only main.d but all files in project?

December 02, 2012
On Sunday, 2 December 2012 at 14:52:24 UTC, Lubos Pintes wrote:
> Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
> Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
>> Hi!
>> I'm sorry,maybe it is a little bit stupid question,but how to configure
>> VisualD project to get it compile not only main.d but all files in project?

I added 2 modules in project.But compiled only one.

December 02, 2012
On Sunday, 2 December 2012 at 14:58:24 UTC, Zhenya wrote:
> On Sunday, 2 December 2012 at 14:52:24 UTC, Lubos Pintes wrote:
>> Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
>> Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
>>> Hi!
>>> I'm sorry,maybe it is a little bit stupid question,but how to configure
>>> VisualD project to get it compile not only main.d but all files in project?
>
> I added 2 modules in project.But compiled only one.

I have the following errors:

Error 42: Symbol Undefined _D10dispatcher7__arrayZ
Debug\space.obj(space)
 Error 42: Symbol Undefined _D10dispatcher12__ModuleInfoZ

December 02, 2012
On Sunday, 2 December 2012 at 15:03:26 UTC, Zhenya wrote:
> On Sunday, 2 December 2012 at 14:58:24 UTC, Zhenya wrote:
>> On Sunday, 2 December 2012 at 14:52:24 UTC, Lubos Pintes wrote:
>>> Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
>>> Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
>>>> Hi!
>>>> I'm sorry,maybe it is a little bit stupid question,but how to configure
>>>> VisualD project to get it compile not only main.d but all files in project?
>>
>> I added 2 modules in project.But compiled only one.
>
> I have the following errors:
>
> Error 42: Symbol Undefined _D10dispatcher7__arrayZ
> Debug\space.obj(space)
>  Error 42: Symbol Undefined _D10dispatcher12__ModuleInfoZ

I added line "module dispatcher;" in file dispatcher.d and all compiled.
Strange,I thought module name inferred from filename.
December 02, 2012
On Sun, 02 Dec 2012 15:08:51 -0000, Zhenya <zheny@list.ru> wrote:

> On Sunday, 2 December 2012 at 15:03:26 UTC, Zhenya wrote:
>> On Sunday, 2 December 2012 at 14:58:24 UTC, Zhenya wrote:
>>> On Sunday, 2 December 2012 at 14:52:24 UTC, Lubos Pintes wrote:
>>>> Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
>>>> Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
>>>>> Hi!
>>>>> I'm sorry,maybe it is a little bit stupid question,but how to configure
>>>>> VisualD project to get it compile not only main.d but all files in project?
>>>
>>> I added 2 modules in project.But compiled only one.
>>
>> I have the following errors:
>>
>> Error 42: Symbol Undefined _D10dispatcher7__arrayZ
>> Debug\space.obj(space)
>>  Error 42: Symbol Undefined _D10dispatcher12__ModuleInfoZ
>
> I added line "module dispatcher;" in file dispatcher.d and all compiled.
> Strange,I thought module name inferred from filename.

What folder was main.d in, and what folder was dispatcher.d in?

R

-- 
Using Opera's revolutionary email client: http://www.opera.com/mail/
December 02, 2012
On Sunday, 2 December 2012 at 20:12:08 UTC, Regan Heath wrote:
> On Sun, 02 Dec 2012 15:08:51 -0000, Zhenya <zheny@list.ru> wrote:
>
>> On Sunday, 2 December 2012 at 15:03:26 UTC, Zhenya wrote:
>>> On Sunday, 2 December 2012 at 14:58:24 UTC, Zhenya wrote:
>>>> On Sunday, 2 December 2012 at 14:52:24 UTC, Lubos Pintes wrote:
>>>>> Not sure if I understand what you ask here, but you probably need to add all files you want to compile to the project. Thus not only the main.d, but all modules.
>>>>> Dňa 2. 12. 2012 11:56 Zhenya  wrote / napísal(a):
>>>>>> Hi!
>>>>>> I'm sorry,maybe it is a little bit stupid question,but how to configure
>>>>>> VisualD project to get it compile not only main.d but all files in project?
>>>>
>>>> I added 2 modules in project.But compiled only one.
>>>
>>> I have the following errors:
>>>
>>> Error 42: Symbol Undefined _D10dispatcher7__arrayZ
>>> Debug\space.obj(space)
>>> Error 42: Symbol Undefined _D10dispatcher12__ModuleInfoZ
>>
>> I added line "module dispatcher;" in file dispatcher.d and all compiled.
>> Strange,I thought module name inferred from filename.
>
> What folder was main.d in, and what folder was dispatcher.d in?
>
> R

These are in the same folder