Skip to content

Commit c2ad335

Browse files
committed
restore stripped suffix, remove outdated configs
1 parent 5f9dc75 commit c2ad335

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ class PackageCommand extends Command {
543543
}
544544

545545
var pythonArchiveFilename =
546-
"cpython-$buildPythonVersion+$buildPythonReleaseDate-$arch-install_only.tar.gz";
546+
"cpython-$buildPythonVersion+$buildPythonReleaseDate-$arch-install_only_stripped.tar.gz";
547547

548548
var pythonArchivePath =
549549
path.join(_buildDir!.path, pythonArchiveFilename);

src/serious_python_windows/windows/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ include_directories(
6363
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin)
6464

6565
target_link_libraries(${PLUGIN_NAME} PRIVATE
66-
"${PYTHON_PACKAGE}/libs/python314$<$<CONFIG:Debug>:_d>.lib"
66+
"${PYTHON_PACKAGE}/libs/python314.lib"
6767
)
6868

6969
# List of absolute paths to libraries that should be bundled with the plugin.
7070
# This list could contain prebuilt libraries, or libraries created by an
7171
# external build triggered from this build file.
7272
set(serious_python_windows_bundled_libraries
73-
"${PYTHON_PACKAGE}/python314$<$<CONFIG:Debug>:_d>.dll"
74-
"${PYTHON_PACKAGE}/python3$<$<CONFIG:Debug>:_d>.dll"
73+
"${PYTHON_PACKAGE}/python314.dll"
74+
"${PYTHON_PACKAGE}/python3.dll"
7575
"$ENV{WINDIR}/system32/msvcp140.dll"
7676
"$ENV{WINDIR}/system32/vcruntime140.dll"
7777
"$ENV{WINDIR}/system32/vcruntime140_1.dll"

0 commit comments

Comments
 (0)