U++ framework
Do not panic. Ask here before giving up.

Home » Developing U++ » U++ Developers corner » Include option for specific package
Include option for specific package [message #21906] Wed, 10 June 2009 10:39 Go to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

Hello All,

I didn't find if exist a method for set include option for specific package.

I thing that it is a possibility to add "compiler option" in package organizer, but if exists more explicit method which i do not know, please tell me.

I want continue to develop wrapper xlslib package started by Koldo.

This will be great because in include option will be not need to add the full path of include directory, but on compiling process, IDE will add full path. Another opportunity is increasing compilation process: specific include folders by package will set in case the developer will use this packages with specific include option.

In base of xlslib package we will add in package organizer for link option only:
/lib/common
/lib/xlslib
/lib/oledoc
/lib/data

This realization can be uses in sdl package too, or in other external plugins.

I hope I was clear

Thank you in advance.
Re: Include option for specific package [message #21913 is a reply to message #21906] Wed, 10 June 2009 16:00 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3459
Registered: August 2008
Senior Veteran
Hello all

Yes I agree. It would be interesting to have in, for example, "Package Organizer", a way to include something like "New Include" in here

index.php?t=getfile&id=1781&private=0

Best regards
Koldo
  • Attachment: Dib.JPG
    (Size: 46.34KB, Downloaded 1291 times)


Best regards
Iñaki
Re: Include option for specific package [message #21914 is a reply to message #21913] Wed, 10 June 2009 16:28 Go to previous messageGo to next message
andrei_natanael is currently offline  andrei_natanael
Messages: 262
Registered: January 2009
Experienced Member
It's possible to put new include paths at "New compiler option", so I don't see why have another "Include" option when you can control the compiler so easy.
Re: Include option for specific package [message #21915 is a reply to message #21914] Wed, 10 June 2009 17:10 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

andrei_natanael wrote on Wed, 10 June 2009 17:28

It's possible to put new include paths at "New compiler option", so I don't see why have another "Include" option when you can control the compiler so easy.


In "New compiler option" is possibility to add not full path directory?
Re: Include option for specific package [message #21916 is a reply to message #21915] Wed, 10 June 2009 17:15 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
AFAIK, yes:

-I/usr/include


These options are transparently used on the compile command line.

Matthias
Re: Include option for specific package [message #21917 is a reply to message #21916] Wed, 10 June 2009 17:33 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

masu wrote on Wed, 10 June 2009 18:15

AFAIK, yes:

-I/usr/include


These options are transparently used on the compile command line.

Matthias


I tried, it didn't compiled, because the default directory is not package directory.

I can try this to add and propose to Mirek. this is a minor change!
Re: Include option for specific package [message #21918 is a reply to message #21917] Wed, 10 June 2009 17:42 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
It works for me, I just moved a header file in one of my projects to "C:\temp" and added Compiler option -Ic:/temp to the main package.
Then I changed references to the moved header to <xxx.h> (I used "xxx.h" before) and it is found and the project compiles.
You may also have to change your references to header file then.

Matthias
Re: Include option for specific package [message #21919 is a reply to message #21918] Wed, 10 June 2009 17:55 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

masu wrote on Wed, 10 June 2009 18:42

It works for me, I just moved a header file in one of my projects to "C:\temp" and added Compiler option -Ic:/temp to the main package.
Then I changed references to the moved header to <xxx.h> (I used "xxx.h" before) and it is found and the project compiles.
You may also have to change your references to header file then.

Matthias


Ok, I thing that I will be understanding in real example:

I have a package located in:
D:\ILupascu\sourcecode\cpp\upp\MyApps\xlslib\

I need add include libs for directories:
D:\ILupascu\sourcecode\cpp\upp\MyApps\xlslib\lib\src\oledoc\
D:\ILupascu\sourcecode\cpp\upp\MyApps\xlslib\lib\src\xlslib\
D:\ILupascu\sourcecode\cpp\upp\MyApps\xlslib\lib\src\common\
D:\ILupascu\sourcecode\cpp\upp\MyApps\xlslib\lib\src\data\

As you see this is located in sub folder of package. this package I can relocated and include libraries will located too.

I propose to add in Package organizer an option "Include option" that in option will be only:

/lib/src/oledoc
/lib/src/xlslib
/lib/src/common
/lib/src/data

In compiling the package which have this include options or use an package which have this compiling option, U++ will set to compiler include option the full path of this 4 directories.

If I do not use this option U++ will not set this include options.

Like this situation I can add as example SDL packages.

Re: Include option for specific package [message #21920 is a reply to message #21919] Wed, 10 June 2009 18:16 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
Why don't you do it like this?

You only need to specify a long path once for each include dir in your xls package.

Matthias
  • Attachment: MyApps.zip
    (Size: 1.62KB, Downloaded 399 times)
Re: Include option for specific package [message #21921 is a reply to message #21920] Wed, 10 June 2009 19:00 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

Why?
Because the package I can relocated and include libraries will automatic located too (I mean the full path)
masu wrote on Wed, 10 June 2009 19:16

Why don't you do it like this?

You only need to specify a long path once for each include dir in your xls package.

Matthias

[Updated on: Wed, 10 June 2009 19:01]

Report message to a moderator

Re: Include option for specific package [message #21922 is a reply to message #21921] Wed, 10 June 2009 19:58 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
Why do you need the full path?
The paths you want to include are all relative to xls (or whatever your package name is), right?

You should be able to move the xls package into another assembly and add this package to your project, the include paths are automatically included within xls.h.

Matthias
Re: Include option for specific package [message #21923 is a reply to message #21922] Wed, 10 June 2009 20:35 Go to previous messageGo to next message
jeremy_c is currently offline  jeremy_c
Messages: 175
Registered: August 2007
Location: Ohio, USA
Experienced Member
I'm thinking, for instance, MySQL or PostgreSQL. They do not contain the PostgreSQL includes nor libs. When I compiled it the first time, I had to go to Setup>Build methods and add PostgreSQL to my include path, the full path. I didn't know about the specific compiler options that I learned here.

However, I think a nice Include/Lib path setup like found in Setup>Build per package would be a nice addition. It's something many people have to do.
Re: Include option for specific package [message #21925 is a reply to message #21923] Wed, 10 June 2009 23:58 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3459
Registered: August 2008
Senior Veteran
Hello all

I have included the directories in the Package Organizer using the -I option. It works for GCC/MinGW and MSC.

So for both compilers the program works well. For now perhaps it is enough but I think it is nicer to include the include directories as an explicit Package option...

... But I have a problem with MSC:
Both XlsLibs and \Microsoft SDKs\Windows\v6.1\Include have a file named rectypes.h Sad

To avoid errors, XlsLib directories have to be before SDK directories. Unfortunately it seems Upp
- First reads Build Methods
- Second reads Package Organizer

So in this case:
- Or I have to do dirty things: renaming rectypes.h in SDKs Rolling Eyes
- Or I have to put XlsLib include directories in Build Methods, and before \Microsoft SDKs\Windows\v6.1\Include

Best regards
Koldo


Best regards
Iñaki
Re: Include option for specific package [message #21928 is a reply to message #21925] Thu, 11 June 2009 07:45 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

koldo wrote on Thu, 11 June 2009 00:58

Hello all

I have included the directories in the Package Organizer using the -I option. It works for GCC/MinGW and MSC.

So for both compilers the program works well. For now perhaps it is enough but I think it is nicer to include the include directories as an explicit Package option...

... But I have a problem with MSC:
Both XlsLibs and \Microsoft SDKs\Windows\v6.1\Include have a file named rectypes.h Sad

To avoid errors, XlsLib directories have to be before SDK directories. Unfortunately it seems Upp
- First reads Build Methods
- Second reads Package Organizer

So in this case:
- Or I have to do dirty things: renaming rectypes.h in SDKs Rolling Eyes
- Or I have to put XlsLib include directories in Build Methods, and before \Microsoft SDKs\Windows\v6.1\Include

Best regards
Koldo


Very interesting detail.

To avoid this situation should be add first package include and after then standard builds.

This situation is another motivation to add this include option.

Ion Lupascu (tojocky)
Re: Include option for specific package [message #21930 is a reply to message #21923] Thu, 11 June 2009 11:48 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
jeremy_c wrote on Wed, 10 June 2009 20:35

I'm thinking, for instance, MySQL or PostgreSQL. They do not contain the PostgreSQL includes nor libs. When I compiled it the first time, I had to go to Setup>Build methods and add PostgreSQL to my include path, the full path. I didn't know about the specific compiler options that I learned here.

However, I think a nice Include/Lib path setup like found in Setup>Build per package would be a nice addition. It's something many people have to do.

For MySQL and PostgreSQL you cannot include these definitions within the wrapper package, because they are installed Upp-external, i.e. they could be located elsewhere on different machines. That is why you must set the paths manually.

Matthias
Re: Include option for specific package [message #21931 is a reply to message #21930] Thu, 11 June 2009 12:18 Go to previous messageGo to next message
jeremy_c is currently offline  jeremy_c
Messages: 175
Registered: August 2007
Location: Ohio, USA
Experienced Member
Yes, I understand, but I could configure the include path on my local box for the PostgreSQL package, if the package based include dialog existed, is what I was thinking?

Jeremy
Re: Include option for specific package [message #21933 is a reply to message #21931] Thu, 11 June 2009 19:13 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
jeremy_c wrote on Thu, 11 June 2009 06:18

Yes, I understand, but I could configure the include path on my local box for the PostgreSQL package, if the package based include dialog existed, is what I was thinking?

Jeremy



Packages are designed to be uncoupled from actual host (either platform or even development computer), that is why adding any paths to package definition is definitely not a good idea.

Mirek
Re: Include option for specific package [message #21941 is a reply to message #21933] Thu, 11 June 2009 21:02 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

luzr wrote on Thu, 11 June 2009 20:13


Packages are designed to be uncoupled from actual host (either platform or even development computer), that is why adding any paths to package definition is definitely not a good idea.

Mirek



Hello Mirek!
But if is a wrapper package for a speciffic lib (example xlslib) and this speciffic lib is ported in wrapper package (sub directory) I thing that it is sense. This lib can be cross-os too and can be uncoupled from actual host. It Is sense because it is not need to modify include prepocesors (correct from #include <header.h> to #include "header.h").
Another method is to add an wizard to import package (files in project) with option correct include tags.
Best idea I thing that need add both methods!
Re: Include option for specific package [message #21942 is a reply to message #21933] Thu, 11 June 2009 21:02 Go to previous messageGo to next message
jeremy_c is currently offline  jeremy_c
Messages: 175
Registered: August 2007
Location: Ohio, USA
Experienced Member
Right, but I should add the include directory to postgresql in my global setup, so that it affects all projects? I figured that per install, per package I could set where my package of postgresql should be able to find it's libs/includes.

Jeremy
Re: Include option for specific package [message #21944 is a reply to message #21942] Thu, 11 June 2009 22:48 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
jeremy_c wrote on Thu, 11 June 2009 15:02

Right, but I should add the include directory to postgresql in my global setup, so that it affects all projects?



Yes. It is least troublesome.

Mirek
Re: Include option for specific package [message #21983 is a reply to message #21944] Sun, 14 June 2009 00:58 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

Hello Mirek,

I added the minimal changes for future: include options for specific package, I hope it is correct. Can you check my changes?

Dirrectory path is same as files <directory>{\<directory>}
Ex: lib\common

If is accepted I can add more wizard things(select directory path dialog, set full path or short path).
Include order, I should add first UPP directory (GetVar("UPP"), after then include directories by package uses and after then add global include path.

The source code is written very clear and professional. Thank you to U++ authors and contribuitors! Of course, exist things that can be optimized (in my point of view)!

I was attached only changed files.

Any suggestions is welcome!
Re: Include option for specific package [message #21986 is a reply to message #21983] Sun, 14 June 2009 09:08 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

I have not possibility to add in a message to files for show an screenshot example:
index.php?t=getfile&id=1784&private=0

Here I tested xlslib example added by Koldo in U++.
Re: Include option for specific package [message #22039 is a reply to message #21986] Mon, 15 June 2009 09:15 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Well, to make things sure...

Is all this about

#include <header.h>

in existing code? (instead of #include "header.h" or something like that).

I am not quite sure about it either. In ANY CASE, it should NOT accept absolute paths, or at least, warn about them.

Mirek
Re: Include option for specific package [message #22040 is a reply to message #22039] Mon, 15 June 2009 09:56 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

luzr wrote on Mon, 15 June 2009 10:15

Well, to make things sure...

Is all this about

#include <header.h>

in existing code? (instead of #include "header.h" or something like that).

I am not quite sure about it either. In ANY CASE, it should NOT accept absolute paths, or at least, warn about them.

Mirek


I agree with you about warn when set full path in include option by package.

Another question is where need to add include option by package by order?
After GetVar("UPP")?
can I add it in svn with all changes requested?
Re: Include option for specific package [message #22164 is a reply to message #22040] Sun, 21 June 2009 19:22 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
I have added "Add to include path" file option that hopefully solves this problem.

IMO, it is less faulty than adding include paths for package and, in the end, maybe even slightly easier to use.

Mirek
Re: Include option for specific package [message #22178 is a reply to message #22164] Tue, 23 June 2009 10:14 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

luzr wrote on Sun, 21 June 2009 20:22

I have added "Add to include path" file option that hopefully solves this problem.

IMO, it is less faulty than adding include paths for package and, in the end, maybe even slightly easier to use.

Mirek


For me, I spent minim 1hour to understand how it works. It is not so simple to understand, I thing that you have little complicated realization. I do not know how the new u++ developers will acomodate with this.

May be I'm single so slowly.

I would like to know other opinions!
Re: Include option for specific package [message #22179 is a reply to message #22178] Tue, 23 June 2009 11:38 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Ehm, the only thing to understand is that if you active "Add to include path" for file, then the file can be found using include path. Is that so hard?
Re: Include option for specific package [message #22181 is a reply to message #22179] Tue, 23 June 2009 12:15 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3459
Registered: August 2008
Senior Veteran
Hello luzr

Sorry, I do not understand Crying or Very Sad

For example in case xlslib:

- We have these files to compile

	lib\src\xlslib\blank.cpp,
	lib\src\xlslib\cbridge.cpp,
	lib\src\xlslib\cell.cpp,
        ... total 30 files ...

- These files have includes located in here:

	lib/src/common,
	lib/src/data,
	lib/src/oledoc,
	lib/src/xlslib;

(you can see that all the paths are under package directory)

- And the compiler has to use these directories before the included in Setup/Build Methods

How would it have to be done with the new "Add to include path" option ?

Best regards
Koldo


Best regards
Iñaki
Re: Include option for specific package [message #22182 is a reply to message #22181] Tue, 23 June 2009 12:30 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Add any include file you want to include, or take .cpp file in the same dir (in many cases, you will want to have it in package anyway), use "Add to include path" for this include.

[Updated on: Tue, 23 June 2009 12:32]

Report message to a moderator

Re: Include option for specific package [message #22184 is a reply to message #22182] Tue, 23 June 2009 13:18 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

luzr wrote on Tue, 23 June 2009 13:30

Add any include file you want to include, or take .cpp file in the same dir (in many cases, you will want to have it in package anyway), use "Add to include path" for this include.



I thing that this realization is not transparent, especially for new u++ developers.

Is more simple to add maximum 4 directories of include path that find in tens or hundreds source (*.cpp, *h) files if exist "include path by package".

Maybe we need to vote what is good and what is bad between our realizations. If is any new proposes, it is very good.

[Updated on: Tue, 23 June 2009 13:19]

Report message to a moderator

Re: Include option for specific package [message #22185 is a reply to message #21906] Tue, 23 June 2009 14:36 Go to previous messageGo to next message
Sender Ghost is currently offline  Sender Ghost
Messages: 301
Registered: November 2008
Senior Member
tojocky wrote on Wed, 10 June 2009 10:39

Hello All,

I didn't find if exist a method for set include option for specific package.

I thing that it is a possibility to add "compiler option" in package organizer, but if exists more explicit method which i do not know, please tell me.


Hello, Ion.

I think, you can achieve this by using new Assembly. Just add necessary include directories to Package nest.
For example, we have MyApps assembly:
Package nest: C:\MyApps;C:\upp\uppsrc
Output directory: C:\upp\out
Assembly name: MyApps

In building process TheIDE will add directories from Package nest to include search path ("-I") before directories configured in Build methods for specific compiler. Example for MSC9:
"C:\Program Files\Microsoft Visual Studio 9.0\Vc\Bin\cl.exe" -nologo -W3 -GR -c \
-I"C:\MyApps" -I"C:\upp\uppsrc" \
-I"C:\Program Files\Microsoft Visual Studio 9.0\Vc\Include" \
-I"C:\Program Files\Microsoft SDKs\Windows\v6.1\Include"

[Updated on: Tue, 23 June 2009 14:40]

Report message to a moderator

Re: Include option for specific package [message #22187 is a reply to message #22185] Tue, 23 June 2009 15:39 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

Sender Ghost wrote on Tue, 23 June 2009 15:36


Hello, Ion.

I think, you can achieve this by using new Assembly. Just add necessary include directories to Package nest.
For example, we have MyApps assembly:
Package nest: C:\MyApps;C:\upp\uppsrc
Output directory: C:\upp\out
Assembly name: MyApps

In building process TheIDE will add directories from Package nest to include search path ("-I") before directories configured in Build methods for specific compiler. Example for MSC9:
"C:\Program Files\Microsoft Visual Studio 9.0\Vc\Bin\cl.exe" -nologo -W3 -GR -c \
-I"C:\MyApps" -I"C:\upp\uppsrc" \
-I"C:\Program Files\Microsoft Visual Studio 9.0\Vc\Include" \
-I"C:\Program Files\Microsoft SDKs\Windows\v6.1\Include"



The goal is to optimize include option!

I have MyApp directory, that contains more packages.
Only few packages use specific include (actual is only xlslib).
Re: Include option for specific package [message #22190 is a reply to message #21986] Tue, 23 June 2009 16:30 Go to previous messageGo to next message
koldo is currently offline  koldo
Messages: 3459
Registered: August 2008
Senior Veteran
Hello Mirek

I have tried to compile xlslib with the available options but I do not know how.

This library has a tree of 42 include files called between them and from 32 .cpp files, that I am not able to compile in a simple portable way.

I think that the Ion proposal included below is the simpler from an user point of view using, as Ion does, relative paths like "lib/src/common".

However I have total confidence in your final decision that I will accept without further discussion.

Best regards
Koldo

tojocky wrote on Sun, 14 June 2009 09:08

I have not possibility to add in a message to files for show an screenshot example:
index.php?t=getfile&id=1784&private=0

Here I tested xlslib example added by Koldo in U++.



Best regards
Iñaki
Re: Include option for specific package [message #22191 is a reply to message #22190] Tue, 23 June 2009 17:09 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Well, I am sorry to be stubborn, I am just STRONGLY opposed to the idea that package should have any explicit include paths.

Mirek
Re: Include option for specific package [message #22192 is a reply to message #22184] Tue, 23 June 2009 17:10 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
tojocky wrote on Tue, 23 June 2009 07:18

luzr wrote on Tue, 23 June 2009 13:30

Add any include file you want to include, or take .cpp file in the same dir (in many cases, you will want to have it in package anyway), use "Add to include path" for this include.



I thing that this realization is not transparent, especially for new u++ developers.

Is more simple to add maximum 4 directories of include path that find in tens or hundreds source (*.cpp, *h) files if exist "include path by package".



That one is simple. It is reflected in file's icon...

Mirek
Re: Include option for specific package [message #22193 is a reply to message #22187] Tue, 23 June 2009 17:25 Go to previous messageGo to next message
Sender Ghost is currently offline  Sender Ghost
Messages: 301
Registered: November 2008
Senior Member
In my current opinion, you just want to use unsuitable tool.
Packages are independent from absolute paths, therefore they are portable.
If you saw U++ code organization you can understand how your code must be organized to accomplish U++ modules approach.
Assembly "knows" about absolute paths and where to find Packages (which is disguised form of include search path directories for compiler). So, changes for paths should be on Assembly level.
I suggest you to use new Assembly, e.g. XlsLibApps with following options:
Package nest: C:\XlsLibApps;C:\XlsLibApps\lib\src\oledoc; \
C:\XlsLibApps\lib\src\xlslib;C:\XlsLibApps\lib\src\common; \
C:\XlsLibApps\lib\src\data;C:\MyApps;C:\upp\uppsrc
Output directory: C:\upp\out
Assembly name: XlsLibApps


to Mirek:
You can improve selection of Package nest directories or just add new option (e.g. ArrayCtrl) for include search paths.

Edit:
Anyway, we all have suitable solutions for this problem. I just want to show another point of view.

[Updated on: Tue, 23 June 2009 17:49]

Report message to a moderator

Re: Include option for specific package [message #22194 is a reply to message #22193] Tue, 23 June 2009 20:06 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Sender Ghost wrote on Tue, 23 June 2009 11:25

In my current opinion, you just want to use unsuitable tool.
Packages are independent from absolute paths, therefore they are portable.
If you saw U++ code organization you can understand how your code must be organized to accomplish U++ modules approach.
Assembly "knows" about absolute paths and where to find Packages (which is disguised form of include search path directories for compiler). So, changes for paths should be on Assembly level.
I suggest you to use new Assembly, e.g. XlsLibApps with following options:
Package nest: C:\XlsLibApps;C:\XlsLibApps\lib\src\oledoc; \
C:\XlsLibApps\lib\src\xlslib;C:\XlsLibApps\lib\src\common; \
C:\XlsLibApps\lib\src\data;C:\MyApps;C:\upp\uppsrc
Output directory: C:\upp\out
Assembly name: XlsLibApps


to Mirek:
You can improve selection of Package nest directories or just add new option (e.g. ArrayCtrl) for include search paths.



Actually, the intended place for include path is build method...

Anyway, the problem we are trying to solve here is that when adapting existing code as U++ package (in this case, existing library capable of parsing XLS files), you have to solve the issue that sources can have its own directory structure, including special folders for .h.

Up to now, we usually fixed the issue by editing sources (#include <foo/bar.h> -> #include "bar.h"). Anyway, I have to agree that it can get long in teeth over time.

That is why I agree there is some problem to solve. But based on experience with "Add any file" to package, I would like to stay clean of any form hinting to the idea that the package is the place to define include path...

Mirek
Re: Include option for specific package [message #22197 is a reply to message #22191] Tue, 23 June 2009 21:15 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

luzr wrote on Tue, 23 June 2009 18:09

Well, I am sorry to be stubborn, I am just STRONGLY opposed to the idea that package should have any explicit include paths.

Mirek


By "explicit include paths" you mean full path?
If Yes, I can add possibility to restrict to set full path for the include package include option.
Re: Include option for specific package [message #22198 is a reply to message #22197] Tue, 23 June 2009 23:26 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
tojocky wrote on Tue, 23 June 2009 15:15

luzr wrote on Tue, 23 June 2009 18:09

Well, I am sorry to be stubborn, I am just STRONGLY opposed to the idea that package should have any explicit include paths.

Mirek


By "explicit include paths" you mean full path?



Any path Smile But package based path is more tolerable... Smile

Mirek
Re: Include option for specific package [message #22199 is a reply to message #22198] Wed, 24 June 2009 00:40 Go to previous messageGo to previous message
koldo is currently offline  koldo
Messages: 3459
Registered: August 2008
Senior Veteran
I think there have been misunderstandings Smile

luzr wrote on Tue, 23 June 2009 23:26

tojocky wrote on Tue, 23 June 2009 15:15

luzr wrote on Tue, 23 June 2009 18:09

Well, I am sorry to be stubborn, I am just STRONGLY opposed to the idea that package should have any explicit include paths.

Mirek


By "explicit include paths" you mean full path?



Any path Smile But package based path is more tolerable... Smile

Mirek


Have I heard that before ? Twisted Evil

Quote:

I think that the Ion proposal included below is the simpler from an user point of view using, as Ion does, relative paths like "lib/src/common".



... relative paths under package directory.

The thing I did not want to do was precisely this:

Quote:

Up to now, we usually fixed the issue by editing sources (#include <foo/bar.h> -> #include "bar.h").



... as I prefer not to modify library sources, but for "force majeure".

I think Ion and me agree from the beginning that for a wrapper, the library sources tree begins from package folder.

We only want to say the compiler how to look for #includes there.

Best regards
Koldo


Best regards
Iñaki
Previous Topic: Abstract Draw
Next Topic: CeGCC
Goto Forum:
  


Current Time: Tue May 19 11:48:26 GMT+2 2026

Total time taken to generate the page: 0.01331 seconds