also fix typo in example and tests

This commit is contained in:
Andreas Pokorny 2021-09-06 23:06:44 +02:00 committed by Charles Giessen
parent a394a862bd
commit 81f542e119
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ target_link_libraries(vk-bootstrap-triangle
glfw glfw
vk-bootstrap vk-bootstrap
vk-bootstrap-compiler-warnings vk-bootstrap-compiler-warnings
vk-boostrap-vulkan-headers) vk-bootstrap-vulkan-headers)
target_include_directories(vk-bootstrap-triangle PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) #path to build directory for shaders target_include_directories(vk-bootstrap-triangle PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) #path to build directory for shaders
add_custom_command( add_custom_command(
@ -18,4 +18,4 @@ add_custom_command(
configure_file ( configure_file (
"${PROJECT_SOURCE_DIR}/example/example_config.h.in" "${PROJECT_SOURCE_DIR}/example/example_config.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/example_config.h" "${CMAKE_CURRENT_BINARY_DIR}/example_config.h"
) )

View File

@ -2,8 +2,8 @@ add_executable(vk-bootstrap-test main.cpp bootstrap_tests.cpp error_code_tests.c
target_link_libraries(vk-bootstrap-test target_link_libraries(vk-bootstrap-test
PRIVATE PRIVATE
vk-bootstrap vk-bootstrap
vk-boostrap-vulkan-headers vk-bootstrap-vulkan-headers
vk-bootstrap-compiler-warnings vk-bootstrap-compiler-warnings
glfw glfw
Catch2 Catch2
) )