├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.MD └── src ├── CMakeLists.txt ├── main.cpp └── rusty_code ├── Cargo.toml └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/README.MD -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/rusty_code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/src/rusty_code/Cargo.toml -------------------------------------------------------------------------------- /src/rusty_code/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trondhe/rusty_cmake/HEAD/src/rusty_code/src/lib.rs --------------------------------------------------------------------------------