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,22 +14,26 @@
cmake_minimum_required(VERSION 3.2)
project(InstanceVersion)
if(NOT SAMPLES_BUILD_ONLY_DYNAMIC)
set(HEADERS
)
project(InstanceVersion)
set(HEADERS
)
set(SOURCES
InstanceVersion.cpp
)
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
add_executable(InstanceVersion
${HEADERS}
${SOURCES}
)
set_target_properties(InstanceVersion PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceVersion "${Vulkan_LIBRARIES}")
set(SOURCES
InstanceVersion.cpp
)
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
add_executable(InstanceVersion
${HEADERS}
${SOURCES}
)
set_target_properties(InstanceVersion PROPERTIES FOLDER "Samples")
target_link_libraries(InstanceVersion PUBLIC "${Vulkan_LIBRARIES}")
endif()