Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions tcl_tk_options.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ abstract project Tcl_Tk_Options is
);

when "windows" =>
null;
C_Compiler_Switches := C_Compiler_Switches
& ("-IC:/ActiveTcl/include");

end case;

Platform_Linker_Options := ();
Expand All @@ -72,8 +74,9 @@ abstract project Tcl_Tk_Options is
when "windows" =>
Platform_Linker_Options := Platform_Linker_Options &
(
"-ltk",
"-ltcl"
"-LC:/ActiveTcl/lib",
"-ltk86t",
"-ltcl86t"
);
end case;

Expand Down