It uses CMake 3.16 built-in utilities to speed up build time: * Unity builds * Precompiled headers The feature is controlled via `ENABLE_FASTER_BUILD` CMake option (disabled by default). The option avaialble only on CMake >= 3.16. The feature is enabled per-target via `ie_faster_build` function. Some observations: * Don't have actual numbers for compile time, but subjectively can see speed up locally with VS 2019. * Unity builds gives much more effect, but has some restriction on source files, so are not used everywhere.
53 lines
2.1 KiB
CMake
53 lines
2.1 KiB
CMake
# Copyright (C) 2018-2020 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
include (target_flags)
|
|
include (options)
|
|
|
|
# these options are aimed to optimize build time on development system
|
|
|
|
if(X86_64)
|
|
set(ENABLE_MKL_DNN_DEFAULT ON)
|
|
else()
|
|
set(ENABLE_MKL_DNN_DEFAULT OFF)
|
|
endif()
|
|
|
|
ie_option (ENABLE_TESTS "unit, behavior and functional tests" OFF)
|
|
|
|
ie_option (ENABLE_MKL_DNN "MKL-DNN plugin for inference engine" ${ENABLE_MKL_DNN_DEFAULT})
|
|
|
|
ie_dependent_option (ENABLE_CLDNN "clDnn based plugin for inference engine" ON "WIN32 OR X86_64;NOT APPLE;NOT MINGW;NOT WINDOWS_STORE; NOT WINDOWS_PHONE" OFF)
|
|
|
|
# FIXME: there are compiler failures with LTO and Cross-Compile toolchains. Disabling for now, but
|
|
# this must be addressed in a proper way
|
|
ie_dependent_option (ENABLE_LTO "Enable Link Time Optimization" OFF "LINUX OR WIN32;NOT CMAKE_CROSSCOMPILING" OFF)
|
|
|
|
ie_option (OS_FOLDER "create OS dedicated folder in output" OFF)
|
|
|
|
# FIXME: ARM cross-compiler generates several "false positive" warnings regarding __builtin_memcpy buffer overflow
|
|
ie_dependent_option (TREAT_WARNING_AS_ERROR "Treat build warnings as errors" ON "X86 OR X86_64" OFF)
|
|
|
|
ie_option (ENABLE_INTEGRITYCHECK "build DLLs with /INTEGRITYCHECK flag" OFF)
|
|
|
|
ie_option (ENABLE_SANITIZER "enable checking memory errors via AddressSanitizer" OFF)
|
|
|
|
ie_option (ENABLE_THREAD_SANITIZER "enable checking data races via ThreadSanitizer" OFF)
|
|
|
|
ie_dependent_option (COVERAGE "enable code coverage" OFF "CMAKE_CXX_COMPILER_ID STREQUAL GNU" OFF)
|
|
|
|
# Define CPU capabilities
|
|
|
|
ie_dependent_option (ENABLE_SSE42 "Enable SSE4.2 optimizations" ON "X86_64 OR X86" OFF)
|
|
|
|
ie_dependent_option (ENABLE_AVX2 "Enable AVX2 optimizations" ON "X86_64 OR X86" OFF)
|
|
|
|
ie_dependent_option (ENABLE_AVX512F "Enable AVX512 optimizations" ON "X86_64 OR X86" OFF)
|
|
|
|
ie_dependent_option (ENABLE_PROFILING_ITT "ITT tracing of IE and plugins internals" ON "NOT CMAKE_CROSSCOMPILING" OFF)
|
|
|
|
# Documentation build
|
|
ie_option (ENABLE_DOCS "build docs using Doxygen" OFF)
|
|
|
|
ie_dependent_option (ENABLE_FASTER_BUILD "Enable build features (PCH, UNITY) to speed up build time" OFF "CMAKE_VERSION VERSION_GREATER_EQUAL 3.16" OFF)
|