22 строки
488 B
CMake
22 строки
488 B
CMake
#Copyright (c) Microsoft. All rights reserved.
|
|
#Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
set(theseTestsName xio_ut)
|
|
|
|
set(${theseTestsName}_test_files
|
|
${theseTestsName}.c
|
|
)
|
|
|
|
set(${theseTestsName}_c_files
|
|
../../src/xio.c
|
|
)
|
|
|
|
set(${theseTestsName}_h_files
|
|
)
|
|
|
|
build_c_test_artifacts(${theseTestsName} ON "tests/azure_c_shared_utility_tests")
|
|
|
|
compile_c_test_artifacts_as(${theseTestsName} C99)
|