Hi,
I create multiple libraries projects using Tizen IDE. I need to run some scripts that build these libraries automatically so I used the option. "Generate Command Line Configuration". This works fine on my machine but I noticed that the generated of command line configuration contains some full paths instead of relative paths.
The make file is ok but bc_build_info.xml include the two following lines:
<CompileOption> -I"/Users/myuser/Documents/Dev/tizen/zlib" -O3 -g -Wall -fmessage-length=0 </CompileOption> <LinkOption>-L"/Users/myuser/Documents/Dev/tizen/zlib/lib" -shared </LinkOption>
I checked in the project settings. For example the link option C++ Build -> settings -> libraries -> libraries search path (-L) shows "${workspace_loc:/${ProjName}/lib}" which is a relative path.
At this point I'm confused. It's almost like the IDE is resolving the relative path to the full path before creating the command line configuration.
Obviously this will not work as we won't be able to run the build script from other people's machine or the build bot.
Any idea or suggestions on how to solve this issue?
Thanks,
Stefano