Use existing tests for appveyor. (#426)

This commit is contained in:
Markus Tavenrath
2019-11-06 16:56:52 +01:00
committed by Andreas Süßenbach
parent 8f3b1d6f01
commit 10aa543b7e
7 changed files with 56 additions and 38 deletions

View File

@@ -14,22 +14,24 @@
cmake_minimum_required(VERSION 3.2)
project(DeviceFunctions)
if (NOT TESTS_BUILD_ONLY_DYNAMIC)
project(DeviceFunctions)
set(HEADERS
)
set(HEADERS
)
set(SOURCES
DeviceFunctions.cpp
)
set(SOURCES
DeviceFunctions.cpp
)
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
source_group(headers FILES ${HEADERS})
source_group(sources FILES ${SOURCES})
add_executable(DeviceFunctions
${HEADERS}
${SOURCES}
)
add_executable(DeviceFunctions
${HEADERS}
${SOURCES}
)
set_target_properties(DeviceFunctions PROPERTIES FOLDER "Tests")
target_link_libraries(DeviceFunctions "${Vulkan_LIBRARIES}")
set_target_properties(DeviceFunctions PROPERTIES FOLDER "Tests")
target_link_libraries(DeviceFunctions "${Vulkan_LIBRARIES}")
endif()