mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-10 02:41:47 +00:00
Add mention of needing to link to the dynamic linker on linux
If a user copy/pastes the code into their project, they need to link to the dynamic linker on linux platforms.
This commit is contained in:
parent
75db58ae8b
commit
95b82a9537
@ -86,6 +86,12 @@ Copy the `src/VkBootstrap.h` and `src/VkBootstrap.cpp` files into your project,
|
||||
|
||||
`vk-bootstrap` is *not* a header only library, so no need to worry about macros in the header.
|
||||
|
||||
#### Linux specific
|
||||
|
||||
vk-bootstrap will load the required symbols at runtime, which requires that the application is linked to the system dynamic link.
|
||||
How the dynamic linker is linked into the project depends on the build system in question.
|
||||
If CMake is being used, link vk-bootstrap with `${CMAKE_DL_LIBS}`.
|
||||
|
||||
### git-submodule + CMake
|
||||
|
||||
Add this project as a git-submodule into the root directory. Suggested is using a subdirectory to hold all submodules.
|
||||
|
Loading…
Reference in New Issue
Block a user