Installing unit into RAD StudioDelphi's RAD Studio5.0libdebug FolderDelphi 7 crashes after installing Delphi XE (BPL mixed paths)Comport Package Library for Embarcadero RAD Studio XE for C++ modulesAccess violation on RAD Studio 2010 where enter to project optionsRad Studio XE2 - how to add template libraryIntallAware 2012 RAD error unable to create fileHow do I launch a new instance of RAD Studio from ExplorerWhy does RAD Studio Seattle 10 install Windows 10 SDK? (and does it work with newer SDKs?)Cannot use FireDAC with RAD studio 10.2 release 1Cannot install iOS SDK for RAD Studio 10.2 Tokyo
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
Writing rule stating superpower from different root cause is bad writing
How can bays and straits be determined in a procedurally generated map?
Equivalence principle before Einstein
Why, historically, did Gödel think CH was false?
Dragon forelimb placement
Fencing style for blades that can attack from a distance
Finding angle with pure Geometry.
Mathematical cryptic clues
Is it possible to do 50 km distance without any previous training?
Fully-Firstable Anagram Sets
can i play a electric guitar through a bass amp?
Method of fabrication patents, Is it okay to import from abroad?
In Japanese, what’s the difference between “Tonari ni” (となりに) and “Tsugi” (つぎ)? When would you use one over the other?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
How does strength of boric acid solution increase in presence of salicylic acid?
Why can't I see bouncing of a switch on an oscilloscope?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
Mage Armor with Defense fighting style (for Adventurers League bladeslinger)
Why don't electron-positron collisions release infinite energy?
Why is consensus so controversial in Britain?
Today is the Center
How to format long polynomial?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Installing unit into RAD Studio
Delphi's RAD Studio5.0libdebug FolderDelphi 7 crashes after installing Delphi XE (BPL mixed paths)Comport Package Library for Embarcadero RAD Studio XE for C++ modulesAccess violation on RAD Studio 2010 where enter to project optionsRad Studio XE2 - how to add template libraryIntallAware 2012 RAD error unable to create fileHow do I launch a new instance of RAD Studio from ExplorerWhy does RAD Studio Seattle 10 install Windows 10 SDK? (and does it work with newer SDKs?)Cannot use FireDAC with RAD studio 10.2 release 1Cannot install iOS SDK for RAD Studio 10.2 Tokyo
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm pretty new to programming, and I'm learning how to use RAD Studio. I want to use this unit in my project:
https://github.com/OneChen/FMXNativeDraw
I've downloaded whole folder called "FMXNativeDraw-master". But the only way I know to actually use it in my project is to extract it in the same folder as project files. I'd like to install it permanently into my RAD Studio so I can include it in new projects without copying the files every single time. How do I do that?
Thank you in advance for your help!
delphi firemonkey rad-studio
|
show 4 more comments
I'm pretty new to programming, and I'm learning how to use RAD Studio. I want to use this unit in my project:
https://github.com/OneChen/FMXNativeDraw
I've downloaded whole folder called "FMXNativeDraw-master". But the only way I know to actually use it in my project is to extract it in the same folder as project files. I'd like to install it permanently into my RAD Studio so I can include it in new projects without copying the files every single time. How do I do that?
Thank you in advance for your help!
delphi firemonkey rad-studio
2
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
1
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
1
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52
|
show 4 more comments
I'm pretty new to programming, and I'm learning how to use RAD Studio. I want to use this unit in my project:
https://github.com/OneChen/FMXNativeDraw
I've downloaded whole folder called "FMXNativeDraw-master". But the only way I know to actually use it in my project is to extract it in the same folder as project files. I'd like to install it permanently into my RAD Studio so I can include it in new projects without copying the files every single time. How do I do that?
Thank you in advance for your help!
delphi firemonkey rad-studio
I'm pretty new to programming, and I'm learning how to use RAD Studio. I want to use this unit in my project:
https://github.com/OneChen/FMXNativeDraw
I've downloaded whole folder called "FMXNativeDraw-master". But the only way I know to actually use it in my project is to extract it in the same folder as project files. I'd like to install it permanently into my RAD Studio so I can include it in new projects without copying the files every single time. How do I do that?
Thank you in advance for your help!
delphi firemonkey rad-studio
delphi firemonkey rad-studio
asked Mar 21 at 23:31
brechobrecho
62
62
2
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
1
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
1
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52
|
show 4 more comments
2
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
1
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
1
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52
2
2
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
1
1
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
1
1
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52
|
show 4 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290746%2finstalling-unit-into-rad-studio%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290746%2finstalling-unit-into-rad-studio%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
If it's a component, you install it in a package, which you install into the IDE. If it's just a unit, you add it to your Search Path (Project->Options->Delphi Compiler->Search Path) or add it to your project (Project->Add to Project).
– Ken White
Mar 21 at 23:48
If this is a set of units you need more often, in several projects, then, instead of adding the directory with the unit(s) to the search path of the project each time, you can also add it to the Delphi library. But if you want it to be recompiled each time, then add it to the project.
– Rudy Velthuis
Mar 22 at 8:31
What does add it to the Delphi library mean, @Rudy? Do you mean library path? Or is there some new magic in Rio that allows you to add your own units to the Delphi RTL?
– Ken White
Mar 22 at 12:13
1
Sound like he means, "add the folder containing the unit to the library paths, as configured in Tools -> Options -> Environment options -> Delphi Options -> Library". Units in those paths are accessible to any project you compile.
– GolezTrol
Mar 22 at 13:05
1
@RudyVelthuis: Sure, I could guess. But If you read the question asked, the person you addressed with the comment probably could not.
– Ken White
Mar 22 at 14:52