是否有 MSYS 脚本文件之类的东西?
Is there such a thing as a MSYS script file?
我运行在 Windows 下使用 MSYS,虽然它可以工作,但我想知道是否有 MSYS 脚本文件之类的东西。
例如,要在 C 中编译 GTK 程序,我需要键入:gcc source.c -o executable.exe 'pkg-config --cflags --libs gtk+-3.0'
进行编译。有没有办法将它存储在一个文件中,并从 MSYS 中 运行 文件中,而不必每次都输入命令(IE 就像 .bat
、.sh
文件)?
如果您想自动构建应用程序,只需使用构建系统即可。 Meson build system is what the GTK+ developers recommend now (and GStreamer, and many other projects). It's multiplatform, and available as a package in MSYS2 (I used it there, works like a charm). They have a simple Meson tutorial 他们构建 GTK 应用程序的地方。那是 3 行代码。
我运行在 Windows 下使用 MSYS,虽然它可以工作,但我想知道是否有 MSYS 脚本文件之类的东西。
例如,要在 C 中编译 GTK 程序,我需要键入:gcc source.c -o executable.exe 'pkg-config --cflags --libs gtk+-3.0'
进行编译。有没有办法将它存储在一个文件中,并从 MSYS 中 运行 文件中,而不必每次都输入命令(IE 就像 .bat
、.sh
文件)?
如果您想自动构建应用程序,只需使用构建系统即可。 Meson build system is what the GTK+ developers recommend now (and GStreamer, and many other projects). It's multiplatform, and available as a package in MSYS2 (I used it there, works like a charm). They have a simple Meson tutorial 他们构建 GTK 应用程序的地方。那是 3 行代码。