├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── bors.toml ├── src ├── gnu.rs ├── lib.rs └── msvc.rs └── windres-test ├── Cargo.toml ├── build.rs ├── src └── main.rs ├── windres-test.ico └── windres-test.rc /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/README.md -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push" 3 | ] 4 | -------------------------------------------------------------------------------- /src/gnu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/src/gnu.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/msvc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/src/msvc.rs -------------------------------------------------------------------------------- /windres-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/windres-test/Cargo.toml -------------------------------------------------------------------------------- /windres-test/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/windres-test/build.rs -------------------------------------------------------------------------------- /windres-test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/windres-test/src/main.rs -------------------------------------------------------------------------------- /windres-test/windres-test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaultyRAM/windres-rs/HEAD/windres-test/windres-test.ico -------------------------------------------------------------------------------- /windres-test/windres-test.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "windres-test.ico" 2 | --------------------------------------------------------------------------------