mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 17:03:01 +02:00
IDE: fixed default project unit output directory path delim
git-svn-id: trunk@22069 -
This commit is contained in:
parent
8b45ef1807
commit
3c20b4854d
@ -175,7 +175,7 @@ else
|
||||
endif
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
all: ide starter lazbuilder
|
||||
all: ide
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
cleanide:
|
||||
|
@ -397,7 +397,7 @@ begin
|
||||
// build the IDE when blfOnlyIDE is set, eg. when installing packages
|
||||
// even if that build node is disabled in configure build lazarus dialog
|
||||
else if (blfOnlyIDE in Flags) then
|
||||
CurMakeMode := mmBuild;
|
||||
CurMakeMode := mmBuild;
|
||||
end;
|
||||
|
||||
if CurMakeMode=mmNone then continue;
|
||||
|
@ -5385,7 +5385,7 @@ begin
|
||||
+le;
|
||||
AProject.MainFile.SetSourceText(NewSource);
|
||||
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib/$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib'+PathDelim+'$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.TargetFilename:='project1';
|
||||
end;
|
||||
|
||||
@ -5452,7 +5452,7 @@ begin
|
||||
// add lcl pp/pas dirs to source search path
|
||||
AProject.AddPackageDependency('LCL');
|
||||
AProject.LazCompilerOptions.Win32GraphicApp:=true;
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib/$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib'+PathDelim+'$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.TargetFilename:='project1';
|
||||
end;
|
||||
|
||||
@ -5582,7 +5582,7 @@ begin
|
||||
+le;
|
||||
AProject.MainFile.SetSourceText(NewSource);
|
||||
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib/$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib'+PathDelim+'$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.TargetFilename:='project1';
|
||||
end;
|
||||
|
||||
@ -5807,7 +5807,7 @@ begin
|
||||
AProject.AddFile(MainFile,false);
|
||||
AProject.MainFileID:=0;
|
||||
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib/$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.UnitOutputDirectory:='lib'+PathDelim+'$(TargetCPU)-$(TargetOS)';
|
||||
AProject.LazCompilerOptions.TargetFilename:='project1';
|
||||
|
||||
// create program source
|
||||
|
Loading…
Reference in New Issue
Block a user