2019-01-11 11:00:12 +00:00
|
|
|
// Copyright 2019 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-30 05:32:08 +00:00
|
|
|
//go:build windows
|
2019-01-11 11:00:12 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2021-08-30 05:32:08 +00:00
|
|
|
import "github.com/go-python/gopy/bind"
|
|
|
|
|
2019-01-11 11:00:12 +00:00
|
|
|
const (
|
2021-08-30 05:32:08 +00:00
|
|
|
libExt = ".pyd"
|
2019-06-07 09:55:03 +00:00
|
|
|
extraGccArgs = ""
|
2019-01-11 11:00:12 +00:00
|
|
|
)
|
2021-08-30 05:32:08 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
bind.WindowsOS = true
|
|
|
|
}
|