#ui #compile #link #wx-widgets #build #cpp

wxbuild-rs

在 build.rs 文件中编译您的 wxWidgets C++ 代码并与 wxWidgets 链接

1 个稳定版本

1.0.0 2019年7月17日

#589GUI

MIT 许可证

11KB
171

为了在 build.rs 文件中编译您的 wxWidgets C++ 代码并与 wxWidgets 链接。

支持的目标:macos 和 x86_64-pc-windows-msvc

// Will compile all cpp files in my_cpp_folder.
// 
// MyApp is name of my class extending wxApp
// 
wxbuild_rs:build("my_cpp_folder",true, "MyApp");

环境变量

WX_CONFIG - 对于非 Windows 目标,wx-config 脚本的路径,如果未设置,则需要 wx-config 在 $PATH 中存在

WX_DIR - 在 Windows 上,wxWidgets 文件的路径。它假设它用 VC 编译了 x64 的静态版本。

依赖项

~180KB