Started working on it. For now blue canvas with FLTK library in Rust
This commit is contained in:
parent
ce080c3d07
commit
548e58fb31
157 changed files with 546 additions and 1 deletions
90
H-CDPIS-C/Cargo.lock
generated
Normal file
90
H-CDPIS-C/Cargo.lock
generated
Normal file
|
@ -0,0 +1,90 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "H-CDPIS-C"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"fltk",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.78"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "cmake"
|
||||
version = "0.1.49"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-channel"
|
||||
version = "0.5.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.8.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fltk"
|
||||
version = "1.3.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a6630e07aa1fe7de69a7c8f9fe4583a8a8778de0ad7b0418d1e633b0d272226d"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"crossbeam-channel",
|
||||
"fltk-sys",
|
||||
"paste",
|
||||
"ttf-parser",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fltk-sys"
|
||||
version = "1.3.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6103dfb304f606328586bc1bd31a4dca89e36633a4c2414bbd140d4af10c6895"
|
||||
dependencies = [
|
||||
"cmake",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "paste"
|
||||
version = "1.0.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
|
||||
|
||||
[[package]]
|
||||
name = "ttf-parser"
|
||||
version = "0.17.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff"
|
9
H-CDPIS-C/Cargo.toml
Normal file
9
H-CDPIS-C/Cargo.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[package]
|
||||
name = "H-CDPIS-C"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
fltk = "^1.2"
|
31
H-CDPIS-C/src/main.rs
Normal file
31
H-CDPIS-C/src/main.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
use fltk::{prelude::*, *, app::screen_size};
|
||||
|
||||
fn main() {
|
||||
let (r, g, b) = utils::hex2rgb(0x0804fc);
|
||||
|
||||
let app = app::App::default();
|
||||
|
||||
// global theming
|
||||
app::background(r, g, b); // background color. For input/output and text widgets, use app::background2
|
||||
app::foreground(20, 20, 20); // labels
|
||||
app::set_font(enums::Font::Courier);
|
||||
app::set_font_size(16);
|
||||
app::set_frame_type(enums::FrameType::RFlatBox);
|
||||
app::set_visible_focus(false);
|
||||
|
||||
// regular widget code
|
||||
let mut win = window::Window::default();
|
||||
win.fullscreen(true);
|
||||
|
||||
let screen_size = screen_size();
|
||||
let width = screen_size.0 as i32;
|
||||
// let height = screen_size.1 as i32;
|
||||
let mut frame = frame::Frame::new(width / 2, 0, 100, 50, "Defaults");
|
||||
frame.set_label_color(enums::Color::from_hex(0xffffff));
|
||||
|
||||
|
||||
win.end();
|
||||
win.show();
|
||||
|
||||
app.run().unwrap();
|
||||
}
|
1
H-CDPIS-C/target/.rustc_info.json
Normal file
1
H-CDPIS-C/target/.rustc_info.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"rustc_fingerprint":6765316432650736243,"outputs":{"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\wojte\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.66.0 (69f9c33d7 2022-12-12)\nbinary: rustc\ncommit-hash: 69f9c33d71c871fc16ac445211281c6e7a340943\ncommit-date: 2022-12-12\nhost: x86_64-pc-windows-msvc\nrelease: 1.66.0\nLLVM version: 15.0.2\n","stderr":""}},"successes":{}}
|
3
H-CDPIS-C/target/CACHEDIR.TAG
Normal file
3
H-CDPIS-C/target/CACHEDIR.TAG
Normal file
|
@ -0,0 +1,3 @@
|
|||
Signature: 8a477f597d28d172789f06886806bc55
|
||||
# This file is a cache directory tag created by cargo.
|
||||
# For information about cache directory tags see https://bford.info/cachedir/
|
0
H-CDPIS-C/target/debug/.cargo-lock
Normal file
0
H-CDPIS-C/target/debug/.cargo-lock
Normal file
|
@ -0,0 +1 @@
|
|||
a373c3c873c3acc5
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":544911202446756179,"profile":9251013656241001069,"path":1684066648322511884,"deps":[[3844725901710089322,"fltk",false,14291949818119236045]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\H-CDPIS-C-8bf19863daff1c86\\dep-bin-H-CDPIS-C"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1,2 @@
|
|||
{"message":"crate `H_CDPIS_C` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case: `h_cdpis_c`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: crate `H_CDPIS_C` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mhelp\u001b[0m\u001b[0m: convert the identifier to snake case: `h_cdpis_c`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 1 warning emitted\u001b[0m\n\n"}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
b1669f42637efee8
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":7112745982619283648,"profile":12637318739757120569,"path":3897781998159177683,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bitflags-af9a4091ec1e1bec\\dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
c53bb62405610c9c
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":2793076990717341772,"profile":12637318739757120569,"path":4802394270105216011,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cc-7986e89d28731df1\\dep-lib-cc"}}],"rustflags":[],"metadata":5862599371499774553,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
acf2b38cb8788674
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":10094334937643343087,"profile":12637318739757120569,"path":13815936321703929154,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfg-if-ff49808d25dc2a03\\dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
a3b25c104cc50f15
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":9010407220201204646,"profile":12637318739757120569,"path":996215006547691855,"deps":[[8260795008238812391,"cc",false,11244469044355939269]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cmake-ee34a2cb094c3828\\dep-lib-cmake"}}],"rustflags":[],"metadata":1171082343024898650,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
8cbc2a29ae9681a3
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"crossbeam-utils\", \"default\", \"std\"]","target":706841190341757008,"profile":12637318739757120569,"path":7432024911900828822,"deps":[[2452538001284770427,"cfg_if",false,8396531289308787372],[7193308319923015694,"crossbeam_utils",false,12199604498759114776]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-channel-3bd0138ff6146cf2\\dep-lib-crossbeam-channel"}}],"rustflags":[],"metadata":909643187441988617,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
|||
9f9fb10f61834bc3
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"std\"]","target":13294766831966498538,"profile":12637318739757120569,"path":3738868006833374878,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-03cc4c7bc0f47d6f\\dep-build-script-build-script-build"}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
fcd715d0db5884f7
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[7193308319923015694,"build_script_build",false,14072485913547612063]],"local":[{"RerunIfChanged":{"output":"debug\\build\\crossbeam-utils-5b6d5a8ff9e798ad\\output","paths":["no_atomic.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
1860cbc4a7b34da9
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"std\"]","target":10554878821136711003,"profile":12637318739757120569,"path":17703312334283207103,"deps":[[2452538001284770427,"cfg_if",false,8396531289308787372],[7193308319923015694,"build_script_build",false,17835478125406181372]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-8d7e759cb295c15c\\dep-lib-crossbeam-utils"}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
cda9b438a33457c6
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":16810586067375456160,"profile":12637318739757120569,"path":9134088415997912022,"deps":[[10014981094073286295,"crossbeam_channel",false,11781863774937070732],[11716183885089128395,"ttf_parser",false,8310752658124537025],[14051957667571541382,"bitflags",false,16788995425668392625],[16297418057485373148,"paste",false,6961805006634998766],[16419969872646462394,"fltk_sys",false,10637080589530416575]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-ad9ec636ac027f62\\dep-lib-fltk"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
|||
2f27c55ce53213a5
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[16419969872646462394,"build_script_main",false,9714462841996595879]],"local":[{"RerunIfChanged":{"output":"debug\\build\\fltk-sys-685e8cdd467c1e97\\output","paths":["build/android.rs","build/bundled.rs","build/link.rs","build/main.rs","build/source.rs","build/utils.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
|||
a752f0407cb4d086
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":2670629102679156082,"profile":12637318739757120569,"path":15790743825822674876,"deps":[[17376665042165853563,"cmake",false,1517648529929843363]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-sys-6cab09231a1a34af\\dep-build-script-build-script-main"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
bfc5294270809e93
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":14927884972664617223,"profile":12637318739757120569,"path":7732272210970364418,"deps":[[16419969872646462394,"build_script_main",false,11894907001500935983]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-sys-97980689b621a1d5\\dep-lib-fltk_sys"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
eedb03b0c44c9d60
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":11680813067107455742,"profile":12637318739757120569,"path":4505812500465137116,"deps":[[16297418057485373148,"build_script_build",false,913495601428783629]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\paste-0e5604e5f8f168b4\\dep-lib-paste"}}],"rustflags":[],"metadata":13015013502493569352,"config":2202906307356721367,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
|||
0d620bdb6863ad0c
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[16297418057485373148,"build_script_build",false,7051563869125767567]],"local":[{"RerunIfChanged":{"output":"debug\\build\\paste-1aad11064a6020e8\\output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
|
@ -0,0 +1 @@
|
|||
8f71386afa2fdc61
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":13294766831966498538,"profile":12637318739757120569,"path":9013106706951545540,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\paste-842564660b08e259\\dep-build-script-build-script-build"}}],"rustflags":[],"metadata":13015013502493569352,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
c17ca5a382b95573
|
|
@ -0,0 +1 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"apple-layout\", \"default\", \"glyph-names\", \"opentype-layout\", \"std\", \"variable-fonts\"]","target":13550899753125537551,"profile":12637318739757120569,"path":679412945855061609,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ttf-parser-58b55b9f9a9bb7b9\\dep-lib-ttf-parser"}}],"rustflags":[],"metadata":13858230244703998561,"config":2202906307356721367,"compile_kind":0}
|
1
H-CDPIS-C/target/debug/H-CDPIS-C.d
Normal file
1
H-CDPIS-C/target/debug/H-CDPIS-C.d
Normal file
|
@ -0,0 +1 @@
|
|||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\H-CDPIS-C.exe: G:\_programowansko\H-CDPIS-C\H-CDPIS-C\src\main.rs
|
BIN
H-CDPIS-C/target/debug/H-CDPIS-C.exe
Normal file
BIN
H-CDPIS-C/target/debug/H-CDPIS-C.exe
Normal file
Binary file not shown.
BIN
H-CDPIS-C/target/debug/H_CDPIS_C.pdb
Normal file
BIN
H-CDPIS-C/target/debug/H_CDPIS_C.pdb
Normal file
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,9 @@
|
|||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\crossbeam-utils-03cc4c7bc0f47d6f\build_script_build-03cc4c7bc0f47d6f.exe: C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\no_atomic.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build-common.rs
|
||||
|
||||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\crossbeam-utils-03cc4c7bc0f47d6f\build_script_build-03cc4c7bc0f47d6f.d: C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\no_atomic.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build-common.rs
|
||||
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\no_atomic.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\crossbeam-utils-0.8.14\build-common.rs:
|
||||
|
||||
# env-dep:CARGO_PKG_NAME=crossbeam-utils
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
cargo:rerun-if-changed=no_atomic.rs
|
|
@ -0,0 +1 @@
|
|||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\crossbeam-utils-5b6d5a8ff9e798ad\out
|
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,35 @@
|
|||
cargo:rerun-if-changed=build/android.rs
|
||||
cargo:rerun-if-changed=build/bundled.rs
|
||||
cargo:rerun-if-changed=build/link.rs
|
||||
cargo:rerun-if-changed=build/main.rs
|
||||
cargo:rerun-if-changed=build/source.rs
|
||||
cargo:rerun-if-changed=build/utils.rs
|
||||
cargo:warning=Could not find invokable cmake!
|
||||
cargo:warning=Could not find invokable CMake or Git, building using the fltk-bundled feature flag!
|
||||
cargo:warning=If this is not desirable, please ensure CMake and Git are installed and in your PATH!
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\build
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\build\Release
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\lib
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\lib64
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\lib\Release
|
||||
cargo:rustc-link-search=native=G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out\lib64\Release
|
||||
cargo:rustc-link-lib=static=cfltk
|
||||
cargo:rustc-link-lib=static=fltk
|
||||
cargo:rustc-link-lib=static=fltk_images
|
||||
cargo:rustc-link-lib=static=fltk_png
|
||||
cargo:rustc-link-lib=static=fltk_jpeg
|
||||
cargo:rustc-link-lib=static=fltk_z
|
||||
cargo:rustc-link-lib=dylib=ws2_32
|
||||
cargo:rustc-link-lib=dylib=comctl32
|
||||
cargo:rustc-link-lib=dylib=gdi32
|
||||
cargo:rustc-link-lib=dylib=oleaut32
|
||||
cargo:rustc-link-lib=dylib=ole32
|
||||
cargo:rustc-link-lib=dylib=uuid
|
||||
cargo:rustc-link-lib=dylib=shell32
|
||||
cargo:rustc-link-lib=dylib=advapi32
|
||||
cargo:rustc-link-lib=dylib=comdlg32
|
||||
cargo:rustc-link-lib=dylib=winspool
|
||||
cargo:rustc-link-lib=dylib=user32
|
||||
cargo:rustc-link-lib=dylib=kernel32
|
||||
cargo:rustc-link-lib=dylib=odbc32
|
||||
cargo:rustc-link-lib=dylib=gdiplus
|
|
@ -0,0 +1 @@
|
|||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-685e8cdd467c1e97\out
|
|
@ -0,0 +1,12 @@
|
|||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
|
||||
100 3109k 100 3109k 0 0 3347k 0 --:--:-- --:--:-- --:--:-- 3347k
|
||||
x lib/
|
||||
x lib/cfltk.lib
|
||||
x lib/fltk.lib
|
||||
x lib/fltk_forms.lib
|
||||
x lib/fltk_images.lib
|
||||
x lib/fltk_jpeg.lib
|
||||
x lib/fltk_png.lib
|
||||
x lib/fltk_z.lib
|
Binary file not shown.
|
@ -0,0 +1,10 @@
|
|||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-6cab09231a1a34af\build_script_main-6cab09231a1a34af.exe: C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build/main.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\android.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\bundled.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\link.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\source.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\utils.rs
|
||||
|
||||
G:\_programowansko\H-CDPIS-C\H-CDPIS-C\target\debug\build\fltk-sys-6cab09231a1a34af\build_script_main-6cab09231a1a34af.d: C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build/main.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\android.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\bundled.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\link.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\source.rs C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\utils.rs
|
||||
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build/main.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\android.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\bundled.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\link.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\source.rs:
|
||||
C:\Users\wojte\.cargo\registry\src\github.com-1ecc6299db9ec823\fltk-sys-1.3.25\build\utils.rs:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -0,0 +1 @@
|
|||
cargo:rerun-if-changed=build.rs
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue