0

Delphi 7 で 2 つのディレクトリ出力を使用して、コンパイル済みのプロジェクトを 2 つの異なるフォルダに作成する方法があるかどうか知りたい ですc:\testx

私はすでにセミコロンを試しましたが、うまくいきませんでした。

ありがとうございました!

4

2 に答える 2

6

コンパイラまたは IDE が実行可能ファイルを複数のディレクトリに出力するようにする方法はありません。ビルド後のアクションとして自分でコピーする必要があります。Delphi 7 にはビルド後のアクションが組み込まれていないため、自分でスクリプトを作成する必要があります。

于 2013-08-11T11:47:49.763 に答える
1

dcc32.exe を使用する 2 つのスクリプト/バッチ ファイルを作成します。

c:
cd  "\program files\borland\bds\4.0\bin\"
dcc32.exe c:\work\project -ec:\temp -uc:\work\extra
rem project is the name of your project  
rem note you can pass parameters to your script using %1 %2 etc etc upto 9 and use them
rem -e is where you want the output 
rem -i Include directories
rem -u is your search path to your libraries
pause
于 2013-08-12T14:48:02.327 に答える