From 2b35620f6e9c7e7319a2301ae8063d22ee2d48e6 Mon Sep 17 00:00:00 2001 From: AlexProudfoot Date: Thu, 30 Oct 2025 13:09:05 +0000 Subject: [PATCH] Update tcl_tk_options.gpr Use ActiveTCL when the "windows" target is specified. --- tcl_tk_options.gpr | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tcl_tk_options.gpr b/tcl_tk_options.gpr index 103cb6a..ee2433a 100644 --- a/tcl_tk_options.gpr +++ b/tcl_tk_options.gpr @@ -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 := (); @@ -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;