Skip to content

Commit b474c4d

Browse files
authored
Update package_approaches.rst (#2078)
Debug and Release switched
1 parent f28fe5e commit b474c4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

creating_packages/package_approaches.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ this meets your needs, we recommend removing the ``compiler.runtime`` subsetting
120120
del self.settings.compiler.runtime
121121
122122
def build(self):
123-
cmake_release = CMake(self, build_type="Debug")
123+
cmake_release = CMake(self, build_type="Release")
124124
cmake_release.configure()
125125
cmake_release.build()
126126
127-
cmake_debug = CMake(self, build_type="Release")
127+
cmake_debug = CMake(self, build_type="Debug")
128128
cmake_debug.configure()
129129
cmake_debug.build()
130130

0 commit comments

Comments
 (0)