Delphi 7 で 2 つのディレクトリ出力を使用して、コンパイル済みのプロジェクトを 2 つの異なるフォルダに作成する方法があるかどうか知りたい です。c:\testx
私はすでにセミコロンを試しましたが、うまくいきませんでした。
ありがとうございました!
コンパイラまたは IDE が実行可能ファイルを複数のディレクトリに出力するようにする方法はありません。ビルド後のアクションとして自分でコピーする必要があります。Delphi 7 にはビルド後のアクションが組み込まれていないため、自分でスクリプトを作成する必要があります。
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