# ISM 组态软件启动程序源码 **Repository Path**: hexinjun888/ismlanuch ## Basic Information - **Project Name**: ISM 组态软件启动程序源码 - **Description**: ISM 组态软件启动程序源码 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 2 - **Created**: 2025-01-09 - **Last Updated**: 2025-12-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ISM 组态软件启动程序源码 # 此程序没有技术支持 #### 介绍 1.安装go 安装包里面的go1.23.2.windows-amd64.msi,并配置一下信息 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct //打开CGO_ENABLED go env -w CGO_ENABLED=1 2.下载go-winres go install github.com/tc-hib/go-winres@latest 要换图标必须是png格式,大小不能大于256x256,否则报错,名字必须为icon和icon16。 go-winres make go build //带有cmd黑框 go build -ldflags "-s -w -H=windowsgui" //没有cmd黑框,适合有gui的 更多介绍参照 https://zhuanlan.zhihu.com/p/693284465