How can I setup Delphi library folders so I can have both Debug and Release versions of my units library when I work on a project ? Until now I compiled my library in Release mode once is finished. But I encountered situations when I work on a project and I need to follow the debugging steps even in the compiled units. But if they are compiled as Release, it won't let me. And if I compile them as Debug, it puts the debuging code in the Release version of the project, which is not normal. I would like that when I switch between Debug and Release in my project, the units also switch. Can it be done ? If I put both Debug and Releas folders in Delphi library path, it will know when to choose te right one ?
Having own library units in the same build config as the project
119 Views Asked by Marus Gradinaru At
1
There are 1 best solutions below
Related Questions in DELPHI
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- How to catch WM_DEVICECHANGE in a control other than TForm?
- show information with Rolling / moving messages delphi xe7
- What is the different between "Console target" and "GUI target" in DCC32 option?
- How to add new online ressources to RAD Studio help system
- C# and Delphi code have different behaviour when importing unmanaged dll
- Loop through records on a cxgrid and update a field/column
- Delphi 7 - Save to a Specific .INI Files Name
- TImagelist for large images
- how to modify a function so it returns an array of strings
- Checking for internet connection in runtime
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- fetch data from web service to dataset in Delphi
- Load candlestick data from file
- Infinite loop in parsing a string using pointer math
Related Questions in BUILD
- Ionic cordova build
- Force GHC using local files
- RPM spec files with rpmbuild can have errors
- (automake, libtool) build fails in automake when using same source file name in different directory
- Backup strategy for build tool hosted on Azure VM
- include typescript file in output result build with TFS
- Android Build failed at ':app:dexDebug' with exception ( library and app project )
- GNU make - depend only on file existence and not modification time
- Error code 31 returned from mt.exe when building C++ projects in Visual Studio 2013
- IONIC FRAMEWORK Build Xcode Error :(
- Jenkins - Stage before "Source Code Management"
- Python: Trouble with dill installation
- Execution failed for task 'app:mergeDebugResources' Crunching Cruncher....png failed
- Android: Execution failed for task ':app:processDebugResources'
- Change assets urls to cdn adding absolute path in Grunt
Related Questions in DELPHI-11-ALEXANDRIA
- Why is the Hint property not available when selecting multiple components?
- Can't Install JCL in Delphi 11 CE
- Bluetooth LE not working with Delphi 11.3
- Indy SOCKET ERROR #1 on MacOS, using IdIcmpClient, works fine on Windows
- How can I get the width and length of a Picture in a Timage Component in Delphi Firemonkey
- No mapping for the Unicode character exists in the target multi-byte code page Delphi 11 TRestRequest, TRestClient
- How correct print on Epson TM 30 (receipt printer)
- How do I loop through all pixels on a TBitmap and get the pixel colors?
- A way to set New line/ Linebreak in a TWebLabel caption?
- Desgin time not matching runtime, label spacing out
- How to convert C# code to Delphi to perform a SHA256 hash and then Base64Url encoding
- Setting a border on a TWebLabel not working
- Creating a local HTTP listener in Delphi
- CharInSet function is not working in Delphi using TMS WEB Core
- How to get the values from a specific json item value from a list of json records from a TRESTResponse in Delphi
Related Questions in DELPHI-UNITS
- How to control the number of Units showing in central pane?
- How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit?
- F2051 Unit was compiled with a different version (again)
- Having own library units in the same build config as the project
- Check at compile time if a unit exists
- Delphi newbie Questions
- Delphi XE - F1027 Unit not found: 'System.pas' or binary equivalents (.dcu) upon Activation of trial version
- Accessing data stored in another unit Delphi
- Acessing several units implementing a Interface with equal names
- Access main form from child unit in Delphi
- Circular reference issue with Classes which use each other
- Defining types from other units in Delphi
- How to use Unit files in Delphi
- Does it make a difference if I clean up my uses clause if the removed units are still used in other units?
- Open File at Cursor Does Not Open the File in the IDE
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I finally managed to understand how it works: the key is
$(Platform)and$(Config).I made a test unit with a function that tells me what configuration I'm using:
I compiled it in Debug and Release mode and saved
.dcufiles in D:\Delphi\MyLIB\Win32 \Release and \Debug. And the.pasin the D:\Delphi\MySRC. Then I go to Tools > Options > Language > Delphi > Library and I addedD:\Delphi\MyLIB\$(Platform)\$(Config)to Library Path section and 'D:\Delphy\MySRC' to Browsing Path.Now, if I make a new project and use that unit, the correct version is selected according to Buid Configuration. And if I switch to Debug and do a
Trace Into (F7)over that function, I can debug inside it.Thanks to
Oleksandr Morozevychcomment !