mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00

* Switch from GPL to LGPL * Deno example is ready * Adding `void _webui_free_all_mem()` to release all dynamic mem at exit * Break Change `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char* data)` to `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char** data)` * Updating readme * Moving Zig build file into build folder More code cleaning and more examples is needed before we release the version 2.0.7.
23 lines
610 B
Rust
23 lines
610 B
Rust
/*
|
|
WebUI Library 2.0.7
|
|
|
|
http://webui.me
|
|
https://github.com/alifcommunity/webui
|
|
|
|
Licensed under GNU General Public License v3.0.
|
|
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
|
|
*/
|
|
|
|
fn main() {
|
|
|
|
// Path to prebuilt WebUI static library
|
|
println!("cargo:rustc-link-search=../../../build/Windows/MSVC/");
|
|
|
|
// Path to WebUI include folder (Optional)
|
|
println!("cargo:rustc-link-search=../../../include/");
|
|
|
|
// WebUI static library name
|
|
println!("cargo:rustc-link-lib=webui-2-static-x64");
|
|
println!("cargo:rustc-link-lib=user32");
|
|
}
|