Wording for readme

This commit is contained in:
Charles Giessen 2020-02-03 20:54:03 -07:00
parent ac7d38046b
commit 02e44adf1f

View File

@ -58,11 +58,15 @@ void device_init()
``` ```
## Using ## Using this library
Simply copy the `src/VkBootstrap.h` and `src/VkBootstrap.cpp` into your project #### Simple
Alternatively, add this project as a git-submodule Copy the `src/VkBootstrap.h` and `src/VkBootstrap.cpp` into your project
#### With git-submodule + CMake
add this project as a git-submodule
```bash ```bash
git submodule add https://github.com/charles-lunarg/vk-bootstrap git submodule add https://github.com/charles-lunarg/vk-bootstrap
@ -76,8 +80,6 @@ add_subdirectory(vk-bootstrap)
## Manually Building ## Manually Building
Simple setup
```bash ```bash
git clone https://github.com/charles-lunarg/vk-bootstrap git clone https://github.com/charles-lunarg/vk-bootstrap
cd vk-bootstrap cd vk-bootstrap
@ -86,7 +88,7 @@ cd build
cmake .. cmake ..
``` ```
To test, glfw and Catch2 are used and automatically included using git submodules. To test, glfw and Catch2 are needed and automatically included using git submodules.
In the project directory, run In the project directory, run