From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 Path: eternal-september.org!reader01.eternal-september.org!aioe.org!Yr2L9qaRshuL+yFKTxsDBA.user.46.165.242.75.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Working folders for a project Date: Tue, 27 Sep 2022 15:16:34 +0100 Organization: Aioe.org NNTP Server Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: gioia.aioe.org; logging-data="6714"; posting-host="Yr2L9qaRshuL+yFKTxsDBA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org"; User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (darwin) Cancel-Lock: sha1:VBwyl2sI6sCVPJgIgShGZAcaOxc= X-Notice: Filtered by postfilter v. 0.9.2 Xref: reader01.eternal-september.org comp.lang.ada:64442 List-Id: "Dmitry A. Kazakov" writes: > There is no need to specify any (Object_Dir included) unless you build > for different targets/scenarios, e.g. Debug/Release/Profile and need > to sort them out. This is true, but I like to keep all the compiler-created stuff out of sight. Only one problem with that: that's where the executables get created! so I'd say for Object_Dir use ("obj"); for Exec_Dir use ("."); -- the same directory as the project file NB Alire likes to use for Exec_Dir use ("bin");