-
Notifications
You must be signed in to change notification settings - Fork 40
Стрельников Михаил Алексеевич #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
m3kskssssssss
wants to merge
1
commit into
cppdevcourse:master
Choose a base branch
from
m3kskssssssss:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,17 @@ | ||
| cmake_minimum_required(VERSION 3.15) | ||
| project(hw-3 CXX) | ||
| enable_testing() | ||
|
|
||
|
|
||
| # Global settings | ||
| set(CMAKE_CXX_STANDARD 17) | ||
| set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
| set(SRC_DIR "${PROJECT_SOURCE_DIR}/src") | ||
| set(INC_DIR "${PROJECT_SOURCE_DIR}/include") | ||
| set(TEST_DIR "${PROJECT_SOURCE_DIR}/tests") | ||
|
|
||
| include_directories("${INC_DIR}") | ||
| add_compile_options(-Wall -Wextra -Werror) | ||
| add_compile_options(-Wall) | ||
|
|
||
| add_executable(main "${SRC_DIR}/main.cpp" "${SRC_DIR}/two-sum.cpp") | ||
|
|
||
| find_package(GTest REQUIRED) | ||
| add_executable(two-sum-test "${TEST_DIR}/test.cpp" "${SRC_DIR}/two-sum.cpp") | ||
| target_link_libraries(two-sum-test PRIVATE gtest::gtest) | ||
| target_compile_options(two-sum-test PRIVATE "-fsanitize=address,undefined") | ||
| target_link_options(two-sum-test PRIVATE "-fsanitize=address,undefined") | ||
| add_test(NAME two-sum-test COMMAND two-sum-test) | ||
| include(GoogleTest) | ||
| gtest_discover_tests(two-sum-test) | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Генерируемые файл (CMakePresets.json, директория build) не должны быть в Git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "version": 4, | ||
| "vendor": { | ||
| "conan": {} | ||
| }, | ||
| "include": [ | ||
| "build\\generators\\CMakePresets.json" | ||
| ] | ||
| } |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <ItemGroup> | ||
| <CustomBuild Include="C:\Users\Dell G3\Desktop\dz_dpo\CppDevCourse-hw3\CMakeLists.txt" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| </ItemGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,307 @@ | ||
| # This is the CMakeCache file. | ||
| # For build in directory: c:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3/build | ||
| # It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe | ||
| # You can edit this file to change values found and used by cmake. | ||
| # If you do not want to change any of the values, simply exit the editor. | ||
| # If you do want to change a value, simply edit, save, and exit the editor. | ||
| # The syntax for the file is as follows: | ||
| # KEY:TYPE=VALUE | ||
| # KEY is the name of a variable in the cache. | ||
| # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. | ||
| # VALUE is the current value for the KEY. | ||
|
|
||
| ######################## | ||
| # EXTERNAL cache entries | ||
| ######################## | ||
|
|
||
| //Path to a program. | ||
| CMAKE_AR:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/lib.exe | ||
|
|
||
| //Semicolon separated list of supported configuration types, only | ||
| // supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything | ||
| // else will be ignored. | ||
| CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo | ||
|
|
||
| //Flags used by the CXX compiler during all build types. | ||
| CMAKE_CXX_FLAGS:STRING=/MP8 /DWIN32 /D_WINDOWS /GR /EHsc | ||
|
|
||
| //Flags used by the CXX compiler during DEBUG builds. | ||
| CMAKE_CXX_FLAGS_DEBUG:STRING=/Zi /Ob0 /Od /RTC1 | ||
|
|
||
| //Flags used by the CXX compiler during MINSIZEREL builds. | ||
| CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/O1 /Ob1 /DNDEBUG | ||
|
|
||
| //Flags used by the CXX compiler during RELEASE builds. | ||
| CMAKE_CXX_FLAGS_RELEASE:STRING=/O2 /Ob2 /DNDEBUG | ||
|
|
||
| //Flags used by the CXX compiler during RELWITHDEBINFO builds. | ||
| CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/Zi /O2 /Ob1 /DNDEBUG | ||
|
|
||
| //Libraries linked by default with all C++ applications. | ||
| CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib | ||
|
|
||
| //Flags used by the linker during all build types. | ||
| CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64 | ||
|
|
||
| //Flags used by the linker during DEBUG builds. | ||
| CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL | ||
|
|
||
| //Flags used by the linker during MINSIZEREL builds. | ||
| CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during RELEASE builds. | ||
| CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during RELWITHDEBINFO builds. | ||
| CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL | ||
|
|
||
| //Value Computed by CMake. | ||
| CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3/build/CMakeFiles/pkgRedirects | ||
|
|
||
| CMAKE_GENERATOR_PLATFORM:STRING=x64 | ||
|
|
||
| CMAKE_GENERATOR_TOOLSET:STRING=v143 | ||
|
|
||
| //Install path prefix, prepended onto install directories. | ||
| CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/hw-3 | ||
|
|
||
| //Path to a program. | ||
| CMAKE_LINKER:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/link.exe | ||
|
|
||
| //Flags used by the linker during the creation of modules during | ||
| // all build types. | ||
| CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64 | ||
|
|
||
| //Flags used by the linker during the creation of modules during | ||
| // DEBUG builds. | ||
| CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL | ||
|
|
||
| //Flags used by the linker during the creation of modules during | ||
| // MINSIZEREL builds. | ||
| CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during the creation of modules during | ||
| // RELEASE builds. | ||
| CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during the creation of modules during | ||
| // RELWITHDEBINFO builds. | ||
| CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL | ||
|
|
||
| //Path to a program. | ||
| CMAKE_MT:FILEPATH=CMAKE_MT-NOTFOUND | ||
|
|
||
| //No help, variable specified on the command line. | ||
| CMAKE_POLICY_DEFAULT_CMP0091:UNINITIALIZED=NEW | ||
|
|
||
| //Value Computed by CMake | ||
| CMAKE_PROJECT_DESCRIPTION:STATIC= | ||
|
|
||
| //Value Computed by CMake | ||
| CMAKE_PROJECT_HOMEPAGE_URL:STATIC= | ||
|
|
||
| //Value Computed by CMake | ||
| CMAKE_PROJECT_NAME:STATIC=hw-3 | ||
|
|
||
| //RC compiler | ||
| CMAKE_RC_COMPILER:FILEPATH=rc | ||
|
|
||
| //Flags for Windows Resource Compiler during all build types. | ||
| CMAKE_RC_FLAGS:STRING=-DWIN32 | ||
|
|
||
| //Flags for Windows Resource Compiler during DEBUG builds. | ||
| CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG | ||
|
|
||
| //Flags for Windows Resource Compiler during MINSIZEREL builds. | ||
| CMAKE_RC_FLAGS_MINSIZEREL:STRING= | ||
|
|
||
| //Flags for Windows Resource Compiler during RELEASE builds. | ||
| CMAKE_RC_FLAGS_RELEASE:STRING= | ||
|
|
||
| //Flags for Windows Resource Compiler during RELWITHDEBINFO builds. | ||
| CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= | ||
|
|
||
| //Flags used by the linker during the creation of shared libraries | ||
| // during all build types. | ||
| CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64 | ||
|
|
||
| //Flags used by the linker during the creation of shared libraries | ||
| // during DEBUG builds. | ||
| CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL | ||
|
|
||
| //Flags used by the linker during the creation of shared libraries | ||
| // during MINSIZEREL builds. | ||
| CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during the creation of shared libraries | ||
| // during RELEASE builds. | ||
| CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO | ||
|
|
||
| //Flags used by the linker during the creation of shared libraries | ||
| // during RELWITHDEBINFO builds. | ||
| CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL | ||
|
|
||
| //If set, runtime paths are not added when installing shared libraries, | ||
| // but are added when building. | ||
| CMAKE_SKIP_INSTALL_RPATH:BOOL=NO | ||
|
|
||
| //If set, runtime paths are not added when using shared libraries. | ||
| CMAKE_SKIP_RPATH:BOOL=NO | ||
|
|
||
| //Flags used by the linker during the creation of static libraries | ||
| // during all build types. | ||
| CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64 | ||
|
|
||
| //Flags used by the linker during the creation of static libraries | ||
| // during DEBUG builds. | ||
| CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= | ||
|
|
||
| //Flags used by the linker during the creation of static libraries | ||
| // during MINSIZEREL builds. | ||
| CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= | ||
|
|
||
| //Flags used by the linker during the creation of static libraries | ||
| // during RELEASE builds. | ||
| CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= | ||
|
|
||
| //Flags used by the linker during the creation of static libraries | ||
| // during RELWITHDEBINFO builds. | ||
| CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= | ||
|
|
||
| //No help, variable specified on the command line. | ||
| CMAKE_TOOLCHAIN_FILE:FILEPATH=generators/conan_toolchain.cmake | ||
|
|
||
| //If this value is on, makefiles will be generated without the | ||
| // .SILENT directive, and all commands will be echoed to the console | ||
| // during the make. This is useful for debugging only. With Visual | ||
| // Studio IDE projects all commands are done without /nologo. | ||
| CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE | ||
|
|
||
| //The directory containing a CMake configuration file for GTest. | ||
| GTest_DIR:PATH=C:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3/build/generators | ||
|
|
||
| //Value Computed by CMake | ||
| hw-3_BINARY_DIR:STATIC=C:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3/build | ||
|
|
||
| //Value Computed by CMake | ||
| hw-3_IS_TOP_LEVEL:STATIC=ON | ||
|
|
||
| //Value Computed by CMake | ||
| hw-3_SOURCE_DIR:STATIC=C:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3 | ||
|
|
||
|
|
||
| ######################## | ||
| # INTERNAL cache entries | ||
| ######################## | ||
|
|
||
| //ADVANCED property for variable: CMAKE_AR | ||
| CMAKE_AR-ADVANCED:INTERNAL=1 | ||
| //This is the directory where this CMakeCache.txt was created | ||
| CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3/build | ||
| //Major version of cmake used to create the current loaded cache | ||
| CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 | ||
| //Minor version of cmake used to create the current loaded cache | ||
| CMAKE_CACHE_MINOR_VERSION:INTERNAL=26 | ||
| //Patch version of cmake used to create the current loaded cache | ||
| CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 | ||
| //Path to CMake executable. | ||
| CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe | ||
| //Path to cpack program executable. | ||
| CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe | ||
| //Path to ctest program executable. | ||
| CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe | ||
| //ADVANCED property for variable: CMAKE_CXX_FLAGS | ||
| CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG | ||
| CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL | ||
| CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE | ||
| CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO | ||
| CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES | ||
| CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 | ||
| //Executable file format | ||
| CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown | ||
| //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS | ||
| CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG | ||
| CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL | ||
| CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE | ||
| CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO | ||
| CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //Name of external makefile project generator. | ||
| CMAKE_EXTRA_GENERATOR:INTERNAL= | ||
| //Name of generator. | ||
| CMAKE_GENERATOR:INTERNAL=Visual Studio 17 2022 | ||
| //Generator instance identifier. | ||
| CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Community | ||
| //Source directory with the top level CMakeLists.txt file for this | ||
| // project | ||
| CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Dell G3/Desktop/dz_dpo/CppDevCourse-hw3 | ||
| //ADVANCED property for variable: CMAKE_LINKER | ||
| CMAKE_LINKER-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS | ||
| CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG | ||
| CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL | ||
| CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE | ||
| CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO | ||
| CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_MT | ||
| CMAKE_MT-ADVANCED:INTERNAL=1 | ||
| //number of local generators | ||
| CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 | ||
| //Platform information initialized | ||
| CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 | ||
| //noop for ranlib | ||
| CMAKE_RANLIB:INTERNAL=: | ||
| //ADVANCED property for variable: CMAKE_RC_COMPILER | ||
| CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 | ||
| CMAKE_RC_COMPILER_WORKS:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_RC_FLAGS | ||
| CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG | ||
| CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL | ||
| CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE | ||
| CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO | ||
| CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //Path to CMake installation. | ||
| CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.26 | ||
| //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS | ||
| CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG | ||
| CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL | ||
| CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE | ||
| CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO | ||
| CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH | ||
| CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_SKIP_RPATH | ||
| CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS | ||
| CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG | ||
| CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL | ||
| CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE | ||
| CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO | ||
| CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 | ||
| //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE | ||
| CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 | ||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Когда обсуждали выключение тестов, подразумевалось, что вы не будете коммитить эти изменения. Сейчас из-за них не запустятся тесты в GitHub Actions