에라메세지
connot debug project unless a host application is defined.
use the run/parameters dialog box.......
run에 parameters를 열어봤는데 뭐하는 건지 모르겠네요
왜 에러가 나는지 아시는분 부탁드립니다.
------------- 프로그램 ------------------
library test;
uses
sysutils,
classes,
test1 in 'test1.pas';
function min(x,y:integer):integer;
begin
if x<y then min:=x else min:=y;
end;
function max(x,y:integer):integer;
begin
if x>y then max:=x else max:=y;
end;
exports
min,max;
begin
end.
Dll은 혼자서 돌 수 있는 일반 프로그램이 아니고 다른 프로그램이 사용하는 것이기 때문에 Run/Parameters 메뉴를 선택해서 DLL을 사용하는 Host 프로그램을 Host 라는 곳에 기입해주고 실행을 하면 되요..
그리고 단순히 컴파일만 할꺼면 Ctrl+F9 하시면 컴파일은 가능합니다.