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.
2 parents f08ae17 + af1f619 commit 089db22Copy full SHA for 089db22
src/CMakeLists.txt
@@ -1252,6 +1252,14 @@ install(TARGETS scip libscip EXPORT scip-targets
1252
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
1253
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
1254
1255
+# install the debug program database files
1256
+if(MSVC)
1257
+ install(FILES $<TARGET_PDB_FILE:scip> DESTINATION ${CMAKE_INSTALL_BINDIR} OPTIONAL)
1258
+ if(BUILD_SHARED_LIBS)
1259
+ install(FILES $<TARGET_PDB_FILE:libscip> DESTINATION ${CMAKE_INSTALL_BINDIR} OPTIONAL)
1260
+ endif()
1261
+endif()
1262
+
1263
# Add all targets to the build-tree export set
1264
export(TARGETS scip libscip
1265
FILE "${PROJECT_BINARY_DIR}/scip-targets.cmake")
0 commit comments