mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-22 15:24:34 +00:00
1f462b42f3
Added device::get_queue_families() to facilitate custom queue setups get_swapchain_images() renamed to get_image(), made member function to swapchain. get_swapchain_image_views() renamed to get_image_views(), also moved to member function of swapchain fixed bug with headless instance not being correct Stopped Catch2 from polluting the buildable targets
20 lines
570 B
CMake
20 lines
570 B
CMake
set(GLFW_BUILD_TESTS
|
|
OFF
|
|
CACHE BOOL "" FORCE)
|
|
set(GLFW_BUILD_DOCS
|
|
OFF
|
|
CACHE BOOL "" FORCE)
|
|
set(GLFW_INSTALL
|
|
OFF
|
|
CACHE BOOL "" FORCE)
|
|
set(GLFW_BUILD_EXAMPLES
|
|
OFF
|
|
CACHE BOOL "" FORCE)
|
|
add_subdirectory(glfw)
|
|
|
|
set(CATCH_BUILD_TESTING OFF CACHE BOOL "" FORCE)
|
|
set(CATCH_ENABLE_WERROR OFF CACHE BOOL "" FORCE)
|
|
set(CATCH_INSTALL_DOCS OFF CACHE BOOL "" FORCE)
|
|
set(CATCH_INSTALL_HELPERS OFF CACHE BOOL "" FORCE)
|
|
set_property(GLOBAL PROPERTY CTEST_TARGETS_ADDED 1) #remove Catch2 target spam
|
|
add_subdirectory(Catch2) |