* Add project skeleton and check-in snapshot of generated SDK for Azure App Configuration. * Add new line at eof * Add exclusion to the cspell issue. * Explicitly use size_t instead of auto for iterating through a vector * Add another cspell exclusion, since it is case-sensitive * Address PR feedback, update CL, package version. * Update readme to remove template project content. * Exclude appconfig from recordings, since none exist atm. * Temporarily exclude appconfiguration from docs generation. * Add line/branch coverage thresholds and skip publishing docs if they don't exist.
12 lines
316 B
CMake
12 lines
316 B
CMake
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
cmake_minimum_required (VERSION 3.13)
|
|
|
|
project (azure-data-appconfiguration LANGUAGES CXX)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
|
|
add_subdirectory(azure-data-appconfiguration)
|