Guard BUILD_SMALL_DEBUG_FILES away for MSVC

This commit is contained in:
Marek Roszko 2021-03-10 00:30:38 -05:00
parent 33f465f754
commit 71c1be8de0
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ set( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules )
# and more than 3Gb for the full kicad suite) # and more than 3Gb for the full kicad suite)
# This option create binaries using link option -g1 that create much smaller files, but # This option create binaries using link option -g1 that create much smaller files, but
# there are less info in debug (but the file names and line numbers are available) # there are less info in debug (but the file names and line numbers are available)
option( BUILD_SMALL_DEBUG_FILES "In debug build: create smaller binaries." OFF ) cmake_dependent_option( BUILD_SMALL_DEBUG_FILES "In debug build: create smaller binaries." OFF "NOT MSVC" OFF )
# #