42 lines
1.5 KiB
CMake
42 lines
1.5 KiB
CMake
|
# ---- Developer mode ----
|
||
|
|
||
|
# Developer mode enables targets and code paths in the CMake scripts that are
|
||
|
# only relevant for the developer(s) of nix-gcc-multi-issue
|
||
|
# Targets necessary to build the project must be provided unconditionally, so
|
||
|
# consumers can trivially build and package the project
|
||
|
if(PROJECT_IS_TOP_LEVEL)
|
||
|
option(nix-gcc-multi-issue_DEVELOPER_MODE "Enable developer mode" OFF)
|
||
|
option(BUILD_SHARED_LIBS "Build shared libs." OFF)
|
||
|
endif()
|
||
|
|
||
|
# ---- Suppress C4251 on Windows ----
|
||
|
|
||
|
# Please see include/nix-gcc-multi-issue/nix-gcc-multi-issue.hpp for more details
|
||
|
set(pragma_suppress_c4251 "
|
||
|
/* This needs to suppress only for MSVC */
|
||
|
#if defined(_MSC_VER) && !defined(__ICL)
|
||
|
# define NIX_GCC_MULTI_ISSUE_SUPPRESS_C4251 _Pragma(\"warning(suppress:4251)\")
|
||
|
#else
|
||
|
# define NIX_GCC_MULTI_ISSUE_SUPPRESS_C4251
|
||
|
#endif
|
||
|
")
|
||
|
|
||
|
# ---- Warning guard ----
|
||
|
|
||
|
# target_include_directories with the SYSTEM modifier will request the compiler
|
||
|
# to omit warnings from the provided paths, if the compiler supports that
|
||
|
# This is to provide a user experience similar to find_package when
|
||
|
# add_subdirectory or FetchContent is used to consume this project
|
||
|
set(warning_guard "")
|
||
|
if(NOT PROJECT_IS_TOP_LEVEL)
|
||
|
option(
|
||
|
nix-gcc-multi-issue_INCLUDES_WITH_SYSTEM
|
||
|
"Use SYSTEM modifier for nix-gcc-multi-issue's includes, disabling warnings"
|
||
|
ON
|
||
|
)
|
||
|
mark_as_advanced(nix-gcc-multi-issue_INCLUDES_WITH_SYSTEM)
|
||
|
if(nix-gcc-multi-issue_INCLUDES_WITH_SYSTEM)
|
||
|
set(warning_guard SYSTEM)
|
||
|
endif()
|
||
|
endif()
|