CMake: Add SAMPLES_BUILD_ONLY_DYNAMIC option

This commit is contained in:
mocabe 2020-01-29 15:12:22 +09:00 committed by Markus Tavenrath
parent bb40388d34
commit a7e2cf152e
7 changed files with 131 additions and 104 deletions

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(01_InitInstance)
set(HEADERS
@ -33,3 +35,5 @@ add_executable(01_InitInstance
set_target_properties(01_InitInstance PROPERTIES FOLDER "Samples")
target_link_libraries(01_InitInstance "${Vulkan_LIBRARIES}")
endif()

View File

@ -14,11 +14,14 @@
cmake_minimum_required(VERSION 3.2)
find_package(Vulkan REQUIRED)
project(Vulkan-Hpp_Samples)
option (SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP "Build with local Vulkan headers" OFF)
option (SAMPLES_BUILD_ONLY_DYNAMIC "Build only dynamic" OFF)
if(NOT (SAMPLES_BUILD_ONLY_DYNAMIC AND SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP))
find_package(Vulkan REQUIRED)
endif()
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
add_definitions(-DNOMINMAX -DVK_USE_PLATFORM_WIN32_KHR)

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(CreateDebugUtilsMessenger)
set(HEADERS
@ -32,4 +34,6 @@ add_executable(CreateDebugUtilsMessenger
)
set_target_properties(CreateDebugUtilsMessenger PROPERTIES FOLDER "Samples")
target_link_libraries(CreateDebugUtilsMessenger PUBLIC "${Vulkan_LIBRARIES}")
target_link_libraries(CreateDebugUtilsMessenger "${Vulkan_LIBRARIES}")
endif()

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(InstanceExtensionProperties)
set(HEADERS
@ -32,4 +34,6 @@ add_executable(InstanceExtensionProperties
)
set_target_properties(InstanceExtensionProperties PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceExtensionProperties PUBLIC "${Vulkan_LIBRARIES}")
target_link_libraries(InstanceExtensionProperties "${Vulkan_LIBRARIES}")
endif()

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(InstanceLayerExtensionProperties)
set(HEADERS
@ -32,4 +34,6 @@ add_executable(InstanceLayerExtensionProperties
)
set_target_properties(InstanceLayerExtensionProperties PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceLayerExtensionProperties PUBLIC "${Vulkan_LIBRARIES}")
target_link_libraries(InstanceLayerExtensionProperties "${Vulkan_LIBRARIES}")
endif()

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(InstanceLayerProperties)
set(HEADERS
@ -33,3 +35,5 @@ add_executable(InstanceLayerProperties
set_target_properties(InstanceLayerProperties PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceLayerProperties "${Vulkan_LIBRARIES}")
endif()

View File

@ -14,6 +14,8 @@
cmake_minimum_required(VERSION 3.2)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
project(InstanceVersion)
set(HEADERS
@ -32,4 +34,6 @@ add_executable(InstanceVersion
)
set_target_properties(InstanceVersion PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceVersion PUBLIC "${Vulkan_LIBRARIES}")
target_link_libraries(InstanceVersion "${Vulkan_LIBRARIES}")
endif()