Pelles C forum

Pelles C => Add-ins => Topic started by: TimoVJL on November 23, 2016, 10:56:48 AM

Title: PrjUserEnv Add-In
Post by: TimoVJL on November 23, 2016, 10:56:48 AM
PrjUserEnv Add-In modify current project INCLUDE and LIB.
It adds paths from users PrjUserEnv.ini file.

I someone  create own fSDK folder, that folder can added to project INCLUDE and LIB paths.

Example PrjUserEnv64.ini file for poide64.exe:
Code: [Select]
[Paths]
Include=C:\code\fSDK\include
Lib=C:\code\fSDK\lib\Win
Lib64=C:\code\fSDK\lib\Win64

EDIT:
The setup dialog for it: Tools -> Options... Add-ins tab Options... button
Title: Re: PrjUserEnv Add-In
Post by: TimoVJL on April 05, 2018, 06:53:14 PM
Updated.
Now it support local ini-file too.
A new option how it add paths:
Code: [Select]
[Paths]
Mode=0 ;0=at end 1=at beginning
For example, if someone want to test fSDK, can use Mode=1 so it is included first.
A local ini-file can add folder/folders to the end, if user want to make several test projects quickly with same additional folders.
Title: Re: PrjUserEnv Add-In
Post by: frankie on April 07, 2018, 06:07:26 PM
Nice  :)