We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_d
1 parent a62a4bb commit 159538eCopy full SHA for 159538e
cmake/CMakeLists.txt
@@ -173,6 +173,12 @@ message(STATUS "INCLUDEDIR: ${INCLUDEDIR}")
173
174
set(IFCOPENSHELL_EXPORT_TARGETS "${PROJECT_NAME}Targets")
175
176
+# On Windows Release and Debug binaries are not compatible.
177
+# So we add a postfix to avoid issues and allow release and debug installations to coexist.
178
+if(WIN32)
179
+ set(CMAKE_DEBUG_POSTFIX "_d")
180
+endif()
181
+
182
if(BUILD_SHARED_LIBS)
183
add_definitions(-DIFC_SHARED_BUILD)
184
if(MSVC)
0 commit comments