2019-10-09 03:12:08 +03:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
|
2022-02-12 04:49:26 +03:00
|
|
|
cmake_minimum_required(VERSION 3.22)
|
2019-10-09 03:12:08 +03:00
|
|
|
project(msvc_standard_libraries_tools LANGUAGES CXX)
|
|
|
|
|
2020-04-01 21:42:12 +03:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2019-10-09 03:12:08 +03:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
|
|
|
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
|
|
|
|
|
|
|
add_compile_definitions(NOMINMAX UNICODE _UNICODE)
|
|
|
|
add_compile_options(/W4 /WX $<$<NOT:$<CONFIG:Debug>>:/Zi> /permissive-)
|
|
|
|
|
|
|
|
include_directories(inc)
|
|
|
|
|
|
|
|
add_subdirectory(jobify)
|
|
|
|
add_subdirectory(parallelize)
|
2019-10-31 02:22:33 +03:00
|
|
|
add_subdirectory(validate)
|